我发布这个问题是因为在我的网站上将作者信息添加到我的帖子英雄时遇到了一些麻烦。
我将 Genesis 框架与 Wordpress 一起使用,所以我所做的是从帖子中删除帖子信息并将其添加回帖子英雄中。这一切都有效,除了作者姓名不再显示,因为它尚未在 post 循环中获取。
// Remove entry title
remove_action( 'genesis_entry_header', 'genesis_do_post_title' );
// Remove post info
remove_action( 'genesis_entry_header', 'genesis_post_info', 12 );
// Add page title
add_action( 'hero-info', 'genesis_do_post_title' );
// Add page info
add_action( 'hero-info', 'genesis_post_info', 12 );
为了能够在帖子英雄中添加帖子作者信息,我查找了 stackoverflow 并找到了一个链接,OP 可以通过为它创建一个短代码并在 hero-info 中运行它来修复它
function author_shortcode() {
global $post;
$author_id=$post->post_author;
the_author_meta( 'display_name', $author_id );
}
add_shortcode('author', 'author_shortcode');
然后将此短代码 [作者] 添加到
add_filter( 'genesis_post_info', 'custom_post_info' );
function custom_post_info( $post_info ) {
if ( is_archive() || is_home() ) {
$post_info = __( 'Article by [author] [post_author_posts_link] on [post_date] - [post_comments zero="Leave a Comment" one="1 Comment" more="% Comments" hide_if_off="disabled"]', 'tcguy' );
return $post_info;
}
}
这是现在的结果:http: //imgur.com/a/6lX5J 由于某种原因,它显示在错误的位置。有人知道这怎么可能吗?
该网站可以在这里找到:http ://websforlocals.com/business/
希望我提供了足够的信息,并且可以帮助遇到同样问题的人。