Bu Blogda Ara

9 Mayıs 2019 Perşembe

Meta Bileşeninde Wordpress.org linkini kaldırmak

Aşağıdaki Bilgiler İşe Yarıyor...

...chil(1) işe yaradı bende



Use custom CSS...

.widget_meta > ul > li:nth-last-child(1) {
     display: none;
}

.widget_meta > ul > li:nth-last-child(2) {
     display: none;
}
The answer by Oscar Silván is actually to remove the RSS links. To remove the WordPress link use:

.widget_meta > ul > li:nth-last-child(0) {
     display: none;
}
The numbers work backwards from the end. I have been trying to solve this problem for a couple of days now, and the answers given in the WordPress forum don't work.

Using the plugins suggested to stop the RSS feeds from working, but the links are still displayed. Since WordPress is now being used for static websites and not just blogs it is time they offered this in customization. Anyway it works fine for me now, and I only have the sign-on link for the administrators. I still have "powered by WordPress" at the bottom, but that is fine.

kaynak: https://wordpress.stackexchange.com/questions/38234/remove-wordpress-org-meta-link

Hiç yorum yok: