• Resolved Stephan Kockmann

    (@teescout)


    Dear Brandon,

    at first: Thank you for this great plugin! As I have a german blog, I would like to change the standard pagination-slug “page” to the german word “seite”. Is there any chance, that “Edit Author Slug” could do this for me, too?

    I found some possible solutions searching the web, but all of them seem to bee a bit “complicated”. And as I like you plugin-solution for renaming the author-slugs, I wondered, if you have an idea, how to handle my “pagination-problem” with your plugin.

    Thanks in advance for any idea or new feature in the future!

    Kind regards
    Stephan

Viewing 1 replies (of 1 total)
  • Plugin Author Brandon Allen

    (@thebrandonallen)

    Edit Author Slug can’t edit anything other than author slugs/URLs, and there are no plans to change that. You can try something like the following, which should work. Just make sure you visit the Permalinks page after adding this code to your site.

    
    // Translate "page" slug in pagination
    function my_custom_page_word() {
    	global $wp_rewrite;
    	$wp_rewrite->pagination_base = 'seite';
    }
    add_action( 'init', 'my_custom_page_word' );
    
Viewing 1 replies (of 1 total)
  • The topic ‘Feature request: Edit pagination slug’ is closed to new replies.