sprytechies_kedar_jangir
Forum Replies Created
-
Forum: Hacks
In reply to: Need help in WP Queryuse another argument
‘in_category’ => ‘id of event category’,
Forum: Themes and Templates
In reply to: [Hueman] Header Background Image Size Has Changedif you want to spans the image over the entire page try chaning in the css
.site-title a img{
max-height:100%;
}Forum: Hacks
In reply to: Admin submenus add taxonomy pageuse this in functions.php file
register_post_type(‘discography’,
array(
‘labels’ => array(
//your label stuff
),‘taxonomies’ => array(‘category’), <========= add this….
‘public’ => true,
‘show_ui’ => true,
‘exclude_from_search’ => true,
‘hierarchical’ => true,
‘supports’ => array( ‘title’, ‘editor’, ‘thumbnail’ ),
‘query_var’ => true
)
);Forum: Installing WordPress
In reply to: Fatal Error (Theme)theme is corrupted try another theme
Forum: Installing WordPress
In reply to: how to install wordpressForum: Plugins
In reply to: [Slideshow] problem with sliderthis plugin works fine to me. it navigates to the both the side correctly.
did you change settings for this plugin in admin panelForum: Themes and Templates
In reply to: [Pilcrow] Adding a custom template for just one pagesidebar should be showed on the page, because sidebar showed from the sidebar.php file of the parent theme but it does not show up that means either you create the main template file called index.php file in you child theme where you didnot use the function get_sidebar(); then you did not activate the widget on the this sidebar area called primary whatever it is.what file you created in you child theme.
Forum: Themes and Templates
In reply to: [Customizr] Change page title coloruse style.css instead of code
Forum: Themes and Templates
In reply to: [Pilcrow] Adding a custom template for just one pagecreate custom template and include it in your newly created page.
you can use echo() instead of printf() function like echo “your text”.
It is simple process. Just go to the footer.php file of your theme and change the text as you wish in printf() function