Wordpress文章下面一般会有一行post meta信息,显示文章发表时间、作者、评论等,如果作blog只用当然非常必要,如果做成企业站或其他不需要该信息的网站,就要想办法去掉这一行信息。
如何去掉post info
打开子模板的functions.php,加入下面的代码
remove_action('genesis_before_post_content', 'genesis_post_info');
如何更改post info信息
也许你并不想去掉它,只是格式并不令你满意,或者你要加一些自定义信息,那么下面的方法可以为你所用
add_filter('genesis_post_info', 'custom_post_info'); function custom_post_info($post_info) { $post_info = __('By', 'genesis') . ' [post_author_posts_link] ' . __('on', 'genesis') . ' [post_date] [post_comments] [post_edit]'; return $post_info; }
次方法会将post info从
变成