如何使用自定义字段添加链接到元 - wordpress

时间:2014-06-26 17:01:33

标签: php wordpress

你好有没有人知道如何添加链接到访客作者元? 我正在使用这些代码,我想为每位客座作者添加外部链接。

add_filter( 'the_author', 'guest_author_name' );
add_filter( 'get_the_author_display_name', 'guest_author_name' );

function guest_author_name( $name ) {
global $post;

$author = get_post_meta( $post->ID, 'guest-author', true );

if ( $author )
$name = $author;

return $name;
} 

0 个答案:

没有答案