Bioraz
Bioraz is a 2 columns fixed width WordPress theme developed by MagPress.com. This theme comes ready with a user friendly theme options page, featured content slider, footer widgets, Adsense ready and many more.
This work is licensed under a CC Attribution-Share Alike 3.0 United States License.
Tags: Adsense Ready, Custom Header, Custom Menu, Featured Content, Fixed Width, Free WordPress Themes, Horizontal Navigation, Orange, Right Sidebar, Sidebar Footer, Theme Options, Threaded Comments, Three Level Dropmenu, Twitter Ready, Two Columns, White, Widget Ready, Wordpress Templates, WP Themes
How to remove that “You are Here: Site Title” ??
I searched all files can’t find where it’s code is located… can someone help me??
It’s inside the header.php > php include breadcrumbs.php. Delete that line.
I need another help!!
Full posts are shown in category pages is it possible to make it show the excerpt or the summary of the post alone??
Thanks
Praveen
Hai. Please open the index.php and look for the code below div class postcontent. Add is_category() within the if conditional code. Thanks.
It worked. Thanks 🙂
Hi i want to add post excerpt in category. Can u please modify this code for me.
<?php wp_link_pages('before=&after=’); ?>
Hai. Open index.php and look for code under div class postcontent:
[php]<?php if( is_date() || is_search() || is_tag() || is_author() ) { ?>[/php]
replace to: *we just add is_category()
[php]<?php if( is_date() || is_search() || is_tag() || is_author() || is_category() ) { ?>[/php]
Thanks.