Example #1
0
"> <!-- #site // Wraps #header, #page-main, #footer - closed in footer -->
<?php 
pagelines_register_hook('pagelines_before_page');
// Hook
?>
	<div id="page"> <!-- #page // Wraps #header, #page-main - closed in footer -->
		<div id="page-canvas">
			<?php 
pagelines_register_hook('pagelines_before_header');
?>
			<div id="header" class="container-group fix">
				<div class="outline">
					<?php 
pagelines_template_area('pagelines_header', 'header');
// Hook
?>
				</div>
			</div>
			<?php 
pagelines_register_hook('pagelines_before_main');
// Hook
?>
			<div id="page-main" class="container-group fix"> <!-- #page-main // closed in footer -->
				<div id="dynamic-content" class="outline fix">
					<?php 
if (pagelines_is_buddypress_page()) {
    ?>
						<div id="buddypress-page" class="fix">
							<div class="content fix">
					<?php 
}
function pagelines_title_tag(){
	/*
		Title Metatag
	*/
	echo "\n<title>";

	// BuddyPress has its own title.
	if( pagelines_bbpress_forum() ){
		bb_title();
	} elseif( pagelines_is_buddypress_page() ) {
		bp_page_title();
	} else {
		if ( !function_exists( 'aiosp_meta' ) && !function_exists( 'wpseo_get_value' ) ) {
		// Pagelines seo titles.
			global $page, $paged;
			$title = wp_title( '|', false, 'right' );

			// Add the blog name.
			$title .= get_bloginfo( 'name' );

			// Add the blog description for the home/front page.
			$title .= ( ( is_home() || is_front_page() ) && get_bloginfo( 'description', 'display' ) ) ? ' | ' . get_bloginfo( 'description', 'display' ) : '';

			// Add a page number if necessary:
			$title .= ( $paged >= 2 || $page >= 2 ) ? ' | ' . sprintf( __( 'Page %s', 'pagelines' ), max( $paged, $page ) ) : '';
		} else {
			$title = trim( wp_title( '', false ) );
		}
	// Print the title.
	echo apply_filters( 'pagelines_meta_title', $title );
	}
	echo "</title>\n";
}	
function pagelines_head_common()
{
    /*
    	Title Metatag
    */
    echo "\n<title>";
    if (pagelines_bbpress_forum()) {
        bb_title();
    } elseif (pagelines_is_buddypress_page()) {
        bp_page_title();
    } else {
        if (is_front_page()) {
            echo get_bloginfo('name');
        } else {
            wp_title('');
        }
    }
    echo "</title>\n";
    if (!VDEV) {
        echo "<!-- Platform WordPress Framework By PageLines - www.PageLines.com -->\n\n";
    }
    /*
    	Meta Images
    */
    if (pagelines_option('pagelines_favicon')) {
        echo '<link rel="shortcut icon" href="' . pagelines_option('pagelines_favicon') . '" type="image/x-icon" />';
    }
    if (pagelines_option('pagelines_touchicon')) {
        echo '<link rel="apple-touch-icon" href="' . pagelines_option('pagelines_touchicon') . '" />';
    }
    ?>
 
<meta http-equiv="Content-Type" content="<?php 
    bloginfo('html_type');
    ?>
; charset=<?php 
    bloginfo('charset');
    ?>
" />
<link rel="profile" href="http://gmpg.org/xfn/11" />
<meta name="generator" content="WordPress <?php 
    bloginfo('version');
    // For stats in WordPress
    ?>
" /> 
<link rel="pingback" href="<?php 
    bloginfo('pingback_url');
    ?>
" />
<?php 
    if (pagelines_option('gfonts')) {
        ?>
	<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=<?php 
        print_pagelines_option('gfonts_families', 'molengo');
        ?>
">
<?php 
    }
    if (pagelines_bbpress_forum()) {
        // Load bbPress headers
        bb_feed_head();
        bb_head();
        echo '<link rel="stylesheet" href="';
        bb_stylesheet_uri();
        echo '" type="text/css" />';
        // Enqueued Stuff doesn't show in bbPress
        // So we have to load the CSS manually....
        if (VPRO) {
            echo '<link rel="stylesheet" id="pagelines-pro-css" href="';
            echo PAGELINES_PRO_ROOT . '/pro.css';
            echo '" type="text/css" />';
        }
        echo '<link rel="stylesheet" id="pagelines-bbpress-css" href="';
        bloginfo('stylesheet_url');
        echo '" type="text/css" />';
    }
    if (VPRO) {
        wp_register_style('pagelines-pro', PAGELINES_PRO_ROOT . '/pro.css', array(), CORE_VERSION, 'all');
        wp_enqueue_style('pagelines-pro');
    }
    wp_register_style('pagelines-stylesheet', get_bloginfo('stylesheet_url'), array(), CORE_VERSION, 'all');
    wp_enqueue_style('pagelines-stylesheet');
    // Queue Common Javascript Libraries
    wp_enqueue_script("jquery");
    if (is_single() || is_page()) {
        wp_enqueue_script('comment-reply');
    }
    // This makes the comment box appear where the ‘reply to this comment’ link is
}
<head>
<?php 
		
		pagelines_register_hook('pagelines_head'); // Hook 
		
		wp_head(); // Hook (WordPress) 

?></head>
<body <?php body_class( pagelines_body_classes() ); ?>>
<?php 

	print_pagelines_option('asynch_analytics');  // Recommended Spot For Asynchronous Google Analytics
	pagelines_register_hook('pagelines_before_site'); // Hook 

?><div id="site" class="<?php echo pagelines_layout_mode();?>"> <!-- #site // Wraps #header, #page-main, #footer - closed in footer -->
<?php pagelines_register_hook('pagelines_before_page'); // Hook ?>
	<div id="page"> <!-- #page // Wraps #header, #page-main - closed in footer -->
		<div id="page-canvas">
			<?php pagelines_register_hook('pagelines_before_header');?>
			<div id="header" class="container-group fix">
				<div class="outline">
					<?php pagelines_template_area('pagelines_header', 'header'); // Hook ?>
				</div>
			</div>
			<?php pagelines_register_hook('pagelines_before_main'); // Hook ?>
			<div id="page-main" class="container-group fix"> <!-- #page-main // closed in footer -->
				<div id="dynamic-content" class="outline fix">
					<?php if(pagelines_is_buddypress_page()):?>
						<div id="buddypress-page" class="fix">
							<div class="content fix">
					<?php endif;?>