sidebar – widgets versus code – options
sidebar – widgets versus code – options
sidebar – widgets versus code – options
You have to create menu from the menu page in Appearance->Menu tab which you want in sidebar. Then you can select this menu from sidebar custom menu widget from Appearance->Widget tab.
My side bar is missing from new pages.
I was having the same issue but found an anwser that worked for me. When you use wp_reset_query(); before you use is_home(); or is_front_page(); it will work just fine.
<!– Obsolete You have to create the file named single.php for your single post template. If you use custom post types, name the file like single-my_custom_post_type.php, where my_custom_post_type part is your registered custom post type. Otherwise index.php is used by default. –> Edited: You have to change the file name from page_blog.php to page-blog.php. Notice … Read more
There can be various way to do it. If the banners would be static then the easiest way i see is to First add the banner to be used in the media using the media uploader and then using the text widget add it to the sidebar using the img tag
The Custom Post Types are probably set up with the Plugin “Types – Complete Solution for Custom Fields and Types” that is missing on the second install. According to their docs this plugin has an export/import feature. You can use it to export in the old install and then import the Custom Post Types in … Read more
More than one dynamic sidebar
Why isn’t my registered sidebar showing up in the admin?
Provided not showing the sidebar is the only difference you really want between the way pages are displayed, you can load the sidebar conditionally with something like this in your page.php (or whatever file your theme is using to load the page): <?php if ( strpos($_SERVER[‘REQUEST_URI’],’/register’) == false ) { // if requested uri DOESN’T … Read more