Home › Forums › Real WordPress Theme › How do I add a sidebar to Archive Posts?
- This topic has 5 replies, 2 voices, and was last updated 4 years, 5 months ago by
SeaTheme.
- AuthorPosts
- January 19, 2018 at 12:55 am #14289
hello there, how do I make a sidebar appear when I’m looking at:
– Archived Posts (selected month)
– Catagory posts (Category)See example http://www.sci-fi-o-rama.com/category/genres/psygnosis/
January 19, 2018 at 1:03 am #14290Also, the Page has all the Social media Icons? and I only want to show the ones I have on my standard post page
January 19, 2018 at 2:16 am #14291Hi,
There is not sidebar option for archive/category.
PS: Can not visit the URL, it shows 403 Forbidden.January 19, 2018 at 2:21 am #14292There are 2 kinds of social media settings:
1. Share button
They are under the post content.
Set in: Real > Theme Option > Social Networks: Share Buttons For Post
It is for click-to-SHARE-visitor’s-social-media, normally activate all, it will help to spread your site.
If you(site owner) don’t have some social media, it is OK.2. Social link
They are on header bar or footer bar normally
Set in: Real > Theme Option > Social Networks: Your Social Media Links
It is of click-link to your(site owner) social media, you must have some.Regards!
January 19, 2018 at 4:43 pm #14297Ok, thanks for the reply.
so I cannot add a sidebar to Archives / Catergory? even if I edit the PHP myself?
is it possible to add a header image to Category Archives?
January 20, 2018 at 3:51 pm #14300Hi,
Off course, it is possible by changing php files.
Plz change the archive.php as:<?php get_header(); ?> <div id="content"> <div class="row-fluid content_wrap_outer two-cols-layout"> <div class=" container sidebar-layout"> <div id="content_wrap" class="span8"> <?php //** Do Hook Archive loop /** * @hooked ux_interface_archive_loop - 10 */ do_action('ux_interface_archive_loop'); ?> </div> <?php //** Do Hook Sidebar Widget /** * @hooked ux_interface_sidebar_widget - 10 */ do_action('ux_interface_sidebar_widget'); ?> </div> </div> </div><!--End content--> <?php get_footer(); ?>
It will show the “Sidebar 1 for Post/Page”.
You could set the default image for all archive pages:
Regards!
- AuthorPosts
- You must be logged in to reply to this topic.