1

我正在 Genesis 上开发一个 WordPress 可访问的网站!我已经安装了 WordPress Genesis Accessible 插件,并且我已经定制了 Leiden Child 主题,您可以在这里获得。

在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;
}

但是,在所有博客文章中,都没有显示任何标题或作者信息!如果您想查看该网站的帖子页面,您可以在此处进行。

提前感谢您的帮助。- 菲利普

4

1 回答 1

1

嗬!

发现我添加了一个显示:无;在主 CSS 中的条目标题上!试图从页面中删除标题就是全部!

真的很简单!

于 2015-06-06T07:47:44.353 回答