默认情况下,我们在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; } } |