• Hello guys.
    I’m french so sorry for my english.
    I’ve a category named Espagnol and on the archive category page, the title is : “Category Archives: Espagnol”
    I would like it to be “Espagnol” only.
    On the archive page the code is <h1 id="page-title"><?php echo vantage_get_archive_title() ?></h1>. How can I change it ?
    Thanks in advance.

Viewing 2 replies - 1 through 2 (of 2 total)
  • It is in the inc/template-tags.php

    $title = sprintf( __( 'Monthly Archives: %s', 'vantage' ), '<span>' . get_the_date( 'F Y' ) . '</span>' );

    so change it to:

    $title = sprintf( __( ' %s', 'vantage' ), '<span>' . get_the_date( 'F Y' ) . '</span>' );

    Thread Starter jmarck4

    (@jmarck4)

    Thank you, it works perfectely =)

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘archive page title’ is closed to new replies.