*
* @package WordPress
* @subpackage Back_My_Book
* @since Back My Book 1.0
*/
// Determines the CSS styles depending on header settings.
$show_header = ($sethead = get_option('bmb_show_featured_area')) ? $sethead : '';
$show_profile_photo = ($setphoto = get_option('bmb_show_profile_photo')) ? $setphoto : '';
if(is_home() && $show_header)
$show_header = $show_header.'home';
$newclasses = $show_header.$show_profile_photo;
?>
>
tag based on what is being viewed.
* We filter the output of wp_title() a bit -- see
* backmybook_filter_wp_title() in functions.php.
*/
wp_title( '|', true, 'right' );
?>
* tag of your theme, or you will break many plugins, which
* generally use this hook to add elements to such
* as styles, scripts, and meta tags.
*/
wp_head();
?>
>