Exclude Category .. Sometime we don't want to show the posts from the particular category so here is the code you have to modify.. query_posts(array( 'post_type' => 'post', 'showposts' => 14, 'category__not_in' => 10, // category id ) ); In...
How to Exclude a category from WP_Query in WordPress !
Dynamic_sidebar() | Function | register_sidebar in WordPress !
Here is the way to add dynamic sidebar or custom widget area to your website..without using any plugin in wordpress ! <?php function nst_child_sidebar() { register_sidebar( array( 'name' => __( 'Top bar', 'nst_child' ), 'id' => 'top-bar', 'description' => __(...