site.com/tag/limon
tag olamamısı icin hangi eklentiyi kullanmam lazım ?
By_antipec mi ne arkadaş vardı o sölemişti ama databaseler gidince konu kayboldu r10 da.
Wordpress Tag Sorunu.
5
●389
- 26-05-2013, 23:37:26Zamanında demişlerdi millet bu nicki yazmayı beceremez başka nick bul kendine diyetoLqahan adlı üyeden alıntı: mesajı görüntüle

Buyur hocam aradığın eklenti bu: http://wordpress.org/plugins/wp-no-tag-base/ - 20-10-2017, 16:12:44Unutmadım unutlmadın seviliyorsun hala kullanıyorum

@by_antipeic;
@by_antiseptic;
Adını gene yazamadım
- 20-12-2017, 04:26:30S.a kolay gelsin. @by_antiseptic;
musait olunca bu no tag olayını anlatıver 1 ara vermiştin ama eklenti patlamış.
https://wordpress.org/plugins/wp-no-tag-base/ googlede index alıyor hep örnek : aa.com/r10
aaa.com/selam gibi cıldırıcam. - 20-12-2017, 19:48:55Şunu functions.php ekleyip deneyebilirsiniz.
// remove tag base add_filter('tag_rewrite_rules', 'no_tag_base_rewrite_rules'); function no_tag_base_rewrite_rules($tag_rewrite) { $tag_rewrite=array(); $tags=get_tags(array('hide_empty'=>false)); foreach($tags as $tag) { $tag_nicename = $tag->slug; if ( $tag->parent == $tag->tag_ID ) $tag->parent = 0; elseif ($tag->parent != 0 ) $tag_nicename = get_tag_parents( $tag->parent, false, '/', true ) . $tag_nicename; $tag_rewrite['('.$tag_nicename.')/(?:feed/)?(feed|rdf|rss|rss2|atom)/?$'] = 'index.php?tag=$matches[1]&feed=$matches[2]'; $tag_rewrite['('.$tag_nicename.')/page/?([0-9]{1,})/?$'] = 'index.php?tag=$matches[1]&paged=$matches[2]'; $tag_rewrite['('.$tag_nicename.')/?$'] = 'index.php?tag=$matches[1]'; } global $wp_rewrite; $old_base = $wp_rewrite->get_tag_permastruct(); $old_base = str_replace( '%tag%', '(.+)', $old_base ); $old_base = trim($old_base, '/'); $tag_rewrite[$old_base.'$'] = 'index.php?tag_redirect=$matches[1]'; return $tag_rewrite; } - 20-12-2017, 22:41:11

