在WordPress仪表盘的“概况(Right Now)”小工具会显示文章、分类、评论等数据,今天就分享下在WordPress仪表盘“概况”小工具显示自定义文章类型的数据的方法。 将下面的代码添加到当前主题的 functions.php 文件即可: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 //在WordPress仪表盘“概况”显示自定义文章类型数据(在WP 3.5.2 测试通过) function wph_right_now_content_table_end() { $args = array( ‘public’ => true , ‘_builtin’ => false […]
概况
去除仪表盘“概况”的WordPress版本信息
昨天 @矢左00 询问如何去除 仪表盘>概况 的WordPress版本信息“您正在使用WordPress xxxx” 只需要将下面的代码添加到主题的 functions.php 即可: 1 2 3 4 5 6 7 8 9 10 11 12 /** * 去掉仪表盘“概况”下的WordPress版本信息 * https://www.wpdaxue.com/remove-dash-wordpress-version.html */ add_filter(’gettext’, ‘remove_admin_stuff’, 20, 3); function remove_admin_stuff( $translated_text, $untranslated_text, $domain ) { $custom_field_text = ‘You are using <span class="b">WordPress %s</span>.’; if (!current_user_can( ‘update_core’) && is_admin() && $untranslated_text === $custom_field_text) […]

