• Frida

    (@frida85jbes)


    I’m pretty new to Categories and Products in WordPress. On the website I’m working on I’ve created some Categories and some Products, and on the Archive page for the products I’ve added Breadcrumbs. It now says “Arkiv etter kategori “Kabler”.” It means something like “Archive by category”. Any change I can remove the text and only have the category name in the breadcrumbs?
    Regards,
    Frida

Viewing 1 replies (of 1 total)
  • You can try this, the code specifically removes the prefix from archive titles:

    add_filter( 'get_the_archive_title', function ( $title ) {
    if ( is_tax() || is_category() ) {
    $title = single_term_title( '', false );
    }
    return $title;
    });

    The easy way to add custom code to WordPress is by using a free plugin like “Code Snippets”.

Viewing 1 replies (of 1 total)

You must be logged in to reply to this topic.