search ]

Change the Author Base URL in Rank Math

Use the rank_math/author_base filter to change the URL base for author archives in Rank Math.

When the author base is set using this filter, the Author Base option configured by users under Rank Math SEO → Titles & Meta → Authors will have no effect.

In the example below, the author base is changed to writers (i.e., /writers/username/ instead of /author/username/).

/**
 * Allow developers to change the author base.
 *
 * @param string $base The author base.
 */
add_filter( 'rank_math/author_base', function( $base ) {
	return 'writers';
});
Join the Discussion
0 Comments  ]

Leave a Comment

To add code, use the buttons below. For instance, click the PHP button to insert PHP code within the shortcode. If you notice any typos, please let us know!

Savvy WordPress Development official logo