我正在开发一个关于创世纪的WordPress可访问网站!我已经安装了WordPress创世易用插件,我已经定制了你可以获得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上查看。
提前感谢您的帮助。-菲利普
发布于 2015-06-06 15:47:44
多!
我发现我在主css中的条目标题上添加了一个显示:无!正在尝试从页面中删除标题,这就是全部!
真的很简单!
https://stackoverflow.com/questions/30679229
复制相似问题