Make tags invicible – WordPress RYU
-
Hello, my blog/website is http://www.glamourpussbook.com
1) I would like to make the tags in the left side invisible to the viewer, but still maintain them in my websites DNA to get hits.2) I would like to take off Date and the link to post in the same left menu.
How do I do this? I have the Css premium Appearance feature.
The blog I need help with is: (visible only to logged in users)
-
You could do this:
.entry-meta { display: none; }That would get rid of all the meta data, but it changes your layout.
-
1 & 2. Go to Appearance > Custom Design > CSS tab in your dashboard, delete all the informational text, and add the following to your custom CSS. This will hide everything on the left of the content as well as the post title. They will still be available to the search engines.
‘.entry-meta, .entry-title {
visibility: hidden;
}` -
-
One more question: at the end of my webpage it says: “Related articles” and a link to one of my post. I would like to delete this too please?
-
Hi there. To hide those, add the following:
.zemanta-related-title, .zemanta-article-ul { display: none; } -
I see you have used the above code and it appears to be working, so I’m going to mark this thread as resolved. If you have further questions, feel free to start a new thread. Thanks.
- The topic ‘Make tags invicible – WordPress RYU’ is closed to new replies.