- This topic has 3 replies, 13 voices, and was last updated 7 years, 4 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.
Home › Forums › WordPress Themes – Premium › Preferential › Need to remove post information
I wanted to remove post info < Posted on: August 24, 2015 by: Editor > etc. Previously I could do it with CSS change but now cannot. I also want to include some category like
See how I can do it.
Wish you all a wonderful new year!
Hi ttm,
To hide post information from single post , please add this css in child theme[style.css]:
article.post header .entry-meta {
display: none;
}
To show category list on single post, please follow this steps:
1> First copy content-single.php(Go to Theme folder->wp-content->Themes->preferential) file and paste it in to child theme directory(Go to Theme folder->wp-content->Themes->preferential-child)
2> This code outputs category name assigned to particular post, you just need to add this code at the place where you wants to display
$category_list = get_the_category_list( __( ', ', 'preferential' ) ); // variable $category_list holds name of category,
echo $category_list; // This display category name on single posts
Don’t hesitate to contact us for any further information
Note: Please use child theme to add this code otherwise your changes will be lost on theme update.
Thanks
Thank you for your reply. But I could not do it still. Please explain where I need to insert the extra code, in the single.content.php or in my posts?
The site is http://www.rupkatha.com
Best
Hi there,
IF you want to display category on post page, then you need to add this code just below the preferential_posted_on() functions of content-single.php (Be sure you have used child theme templates)
Please use this code if you are familiar with basic of php coding.
Note: Please use child theme to add this code otherwise your changes will be lost on theme update.
Thanks
With our premium themes, we offer access to site documentation, video tutorials and timely support. Even if you have just started on WordPress, our support staff have the patience to help you create appealing sites gracefully.
Company
Privacy & Cookies: This site uses cookies. By continuing to use this website, you agree to their use.To find out more, including how to control cookies, see here: Privacy Policy
© Copyright © 2023 Styled Themes. All Right Reserved.