• 03-07-2019, 13:25:13
    #1
    https://tr.wordpress.org/plugins/edit-author-slug/ bu eklentiyi kurmadan kod ile nereden değiştirebilirim. 1-2 şey denedim hata verdi.
    siteadi.com/author/tiger yerine siteadi.com/uye/tiger yapmak istiyorum. Yardımcı olabilecek var mı?
  • 03-07-2019, 16:43:36
    #2
    Merhaba, denemedim ama bu kod işinizi görür sanırım.

    add_action('init', 'cng_author_base');
    function cng_author_base() {
        global $wp_rewrite;
        $author_slug = 'uye'; // change slug name
        $wp_rewrite->author_base = $author_slug;
    }