Site icon The Indian Wire

Best Plugins to Allow Guest Authors on WordPress

Guest authors or bloggers can help you with adding content to your website. Both you and the guest author get the benefits. You can add a guest author without setting up an account or registering on WordPress. In this article, we are going to discuss two methods using which you can add guest authors to your site very easily. 

Plugins to Allow Guest Authors on WordPress

Method 1:

We’re going to discuss the Guest Author plugin for our first method. Compared to others, it’s relatively new, but it’s a very simple system that does not take much time to include your name and URL. This is one of the fastest plugins that you can use for WordPress guest authors. 

Step 1:

Step 2:

Read more: https://www.theindianwire.com/entertainment/nawazuddin-siddiqui-pens-a-note-on-instagram-shares-his-early-failed-attempt-at-meeting-sudhir-mishra-288536/

Step 3:

Step 4:

Step 5:

Guest authors

Step 6:

Step 7:

Guest author name

Step 8:

And just like that, you can add a guest author to your website very easily. 

Read more: https://www.theindianwire.com/education/telangana-open-school-society-toss-result-2020-declared-check-direct-link-284076/

Method 2:

Guest authors detail

You can also add a guest author to your site by coding it manually. For this to work, however, you will need to use custom fields.

Edit the functions.php file for your theme. This can be achieved with FTP programs such as FileZilla, using the cPanel File Manager or the WordPress editor. We are just going to discuss how to use the cPanel alternative in this article.

Step 1: Paste this code first at the function’s .php.

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-blogger’, true );

if ( $author )

$name = $author;

return $name;

}

Read more: https://www.theindianwire.com/wordpress/wordpress-5-3-kirk-arrives-new-theme-226150/

Step 2: The theme will create a new custom entry for the name of the guest author once you save your modifications.

Take notice of the portion of the above code, “guest-blogger.” This is the name of the custom field you’re going to use when adding the name of the author. Simply set this custom field’s value to the name itself.

Exit mobile version