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

Popular posts from this blog

php - Android app custom user registration and login with cookie using facebook sdk -

django - Access session in user model .save() -

php - .htaccess Multiple Rewrite Rules / Prioritizing -