在您的Executive Pro主题中functions.php
, 您可以添加过滤帖子信息的函数。
在Genesis中lib/functions/post.php
, 你会发现genesis_post_info()
函数,其中一行是:
$filtered = apply_filters( \'genesis_post_info\', \'[post_date] \' . __( \'by\', \'genesis\' ) . \' [post_author_posts_link] [post_comments] [post_edit]\' );
这意味着你可以过滤
genesis_post_info
, 不包括
[post_comments]
(和
[post_edit]
因为它可以从管理工具栏中获得)的一部分。
add_filter( \'genesis_post_info\', \'gmj_remove_comments_count\' );
/**
* Remove comments count and Edit link from post info.
*
* @link http://wordpress.stackexchange.com/questions/235203
*/
function gmj_remove_comments_count() {
return \'[post_date] \' . __( \'by\', \'your-theme\' ) . \' [post_author_posts_link]\' );
}