默認情況下,我們在WordPress後臺儀表盤界面的“活動”小工具中,隻能看到文章(post)這種類型的更新信息,今天就分享個代碼片段,允許在 WordPress 後臺儀表盤“活動”小工具添加自定義文章類型。
代碼樣例如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
/** * 儀表盤[活動]小工具輸出自定義文章類型 * https://gist.github.com/Mte90/708e54b21b1f7372b48a */ if ( is_admin() ) { add_filter( 'dashboard_recent_posts_query_args', 'wpdx_add_cpt_to_dashboard_activity' ); function wpdx_add_cpt_to_dashboard_activity( $query ) { // 如果你要顯示所有文章類型,就刪除下行的 //,並在 11 行前面添加 // // $post_types = get_post_types(); // 如果你僅僅希望顯示指定的文章類型,可以修改下行的數組內容,並確保上行前面添加 // $post_types = ['post', 'download']; if ( is_array( $query['post_type'] ) ) { $query['post_type'] = $post_types; } else { $temp = $post_types; $query['post_type'] = $temp; } return $query; } } |
/**
* 儀表盤[活動]小工具輸出自定義文章類型
* https://gist.github.com/Mte90/708e54b21b1f7372b48a
*/
if ( is_admin() ) {
add_filter( ‘dashboard_recent_posts_query_args’, ‘wpdx_add_cpt_to_dashboard_activity’ );
function wpdx_add_cpt_to_dashboard_activity( $query ) {
// 如果你要顯示所有文章類型,就刪除下行的 //,並在 11 行前面添加 //
// $post_types = get_post_types();
// 如果你僅僅希望顯示指定的文章類型,可以修改下行的數組內容,並確保上行前面添加 //
$post_types = [‘post’, ‘download’];
if ( is_array( $query[‘post_type’] ) ) {
$query[‘post_type’] = $post_types;
} else {
$temp = $post_types;
$query[‘post_type’] = $temp;
}
return $query;
}
}
註意看代碼中的註釋內容,按照自己的需求修改代碼後,添加到主題的 functions.php 文件中即可(通常建議在第一個 <?php 的下一行添加)