POST_TAGGED_WITH

Discussion in 'Harrington- A WordPress Business Theme.' started by helpful4you, Jun 15, 2014.

Thread Status:
Not open for further replies.
  1. helpful4you

    helpful4you Member

    Joined:
    Jun 12, 2014
    Messages:
    46
    Likes Received:
    0
    After a standard install of the theme I see on the blog items below something like this:

    POST_TAGGED_WITHkeyword1,keyword2

    What is this? Where can I change this?

    The only way to remove it on one of my translated language blogs/site
    was to completely remove the code from the .php template itself

    What am I missing?
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Go to single.php present in your theme directory and replace the current code
    Code:
       <?php the_tags(POST_TAGGED_WITH,','); ?>
    With code given below
    Code:
      <?php the_tags('',','); ?> 
    Check image for reference
    [​IMG]
    This will solve your issue.
    Thanks & Regards
    Gourav Shrivastava
     
  3. helpful4you

    helpful4you Member

    Joined:
    Jun 12, 2014
    Messages:
    46
    Likes Received:
    0
    Thanks, why was this not already like this in the theme?
    But anyway, thanks for helping me!
     
Thread Status:
Not open for further replies.

Share This Page