【发布时间】:2015-06-06 05:24:58
【问题描述】:
我正在 Genesis 上开发一个可访问 WordPress 的网站!我已经安装了 WordPress Genesis Accessible 插件,并且我已经定制了 Leiden Child 主题,你可以得到here。
在functions.php页面上,我也添加了这段代码......
//* Customize the entry meta in the entry header (requires HTML5 theme support)
add_filter( 'genesis_post_info', 'sp_post_info_filter' );
function sp_post_info_filter($post_info) {
$post_info = '[post_date] by [post_author_posts_link] [post_comments] [post_edit]';
return $post_info;
}
但是,在所有博客文章中,都没有显示任何标题或作者信息!如果您想查看该网站的帖子页面,您可以这样做HERE。
提前感谢您的帮助。 - 菲利普
【问题讨论】:
标签: php wordpress title genesis accessible