php - how to add link to meta using custom field - wordpress -
php - how to add link to meta using custom field - wordpress -
hello know how add together link invitee author meta? using these code , add together external links each invitee author.
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; homecoming $name; }
php wordpress
Comments
Post a Comment