我在WordPress中放置自定义用户元字段它工作正常。使用此代码:
if ( ! function_exists( 'ld_modify_contact_methods' ) ) :
function ld_modify_contact_methods( $contactmethods ) {
$contactmethods['dealername'] = __( 'Dealer Name' );
return $contactmethods;
}
add_filter('user_contactmethods','ld_modify_contact_methods', 10, 1);
现在我正试图用这段代码回应它在前端的价值:
$dealername = get_the_author_meta( 'dealername', $post->post_author );
echo $dealername;
还有这段代码:
echo get_the_author_meta( 'dealername');
两者都不起作用。 谁能告诉我这里的错误呢?
提前致谢。