开发者

Hiding elements in my wordpress blog

开发者 https://www.devze.com 2023-01-30 08:15 出处:网络
I want to take out of each post this section \"/ No Comment / Read More » / Edit\"开发者_运维问答 or hide if you will. this is the website www.justsaynews.com

I want to take out of each post this section "/ No Comment / Read More » / Edit"开发者_运维问答 or hide if you will. this is the website www.justsaynews.com

how do I do this?


The best thing would be to edit the template as Pekka has pointed out.

However I think it is possible by quickly looking at the source to hide it using CSS.

To remove only the links 'No comment' and 'Read more':

span.featuredPostMeta a { display: none; }

or to remove the entire block including the date:

span.featuredPostMeta { display: none; }

However please test it to see whether other data gets hidden or not.

0

精彩评论

暂无评论...
验证码 换一张
取 消