• Resolved swivelcard

    (@swivelcard)


    Site is https://swivelcard.info. I’ve been asked to change this:

    <title>Use Cases | </title>

    To this:

    <title>Use Cases</title>

    That’s it. Seems like it would not be too hard. Can’t find this html in the php/css Editor files.

    Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The <title> tag is going to be generated from the code found in you theme’s header.php file.

    It will look something like this:

    <title><?php wp_title( '|', true, 'right' ); ?></title>

    Editing that line of code is what you would need to do.

    I think this would get you the desired results:

    <title><?php wp_title(); ?></title>

    Keep in mind that any changes to a theme’s files could be overwritten by future updates. It is always best to use a child theme.

    Let me know if you need other help.

    Thanks,

    Brad

    Thread Starter swivelcard

    (@swivelcard)

    Thanks very much. I’m in process of studying WordPress ways and means. Appreciate the help.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Ward Pro theme: how to edit , the html itself’ is closed to new replies.