我正在 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;
}
但是,在所有博客文章中,都没有显示任何标题或作者信息!如果您想查看该网站的帖子页面,您可以在此处进行。
提前感谢您的帮助。- 菲利普