• User Attivo

    Come eliminare il title "View all posts filed under" nei links alle categorie?

    Salve, ho cercato e ricercato pero' non riesco a trovare il modo di eliminare il testo "View all posts filed under" nel tag title sui links delle categorie.

    Qualche idea? Grazie per l'aiuto.


  • User Attivo

    Scusate, trovato:

    Open the classes.php file located in /wp-includes/ directory. Find this line (line 1317 on wp 2.7.1):

    $link .= ?title=?? . sprintf(__( ?View all posts filed under %s? ), $cat_name) . ???;

    And change it to:

    $link .= ?;

    Or you can replace it with anything else:

    $link .= ?title=?? . sprintf(__( ?Your text here? ), $cat_name) . ???;

    io l'ho cambiata cosi':
    $link .= ?title=?? . sprintf(__( ?%s? ), $cat_name) . ???;
    utilizzando come "title" il nome stesso della categoria.

    fatto e testo sparito.

    Personalmente non so perche' WP viene con tutta quelle frasi inutili tipo questa che ho eliminato e quella "Permalink to..."

    Ciao.