Пример #1
0
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
}
Пример #2
0
    }
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"<?php 
bb_language_attributes('1.1');
?>
>
<head<?php 
echo $_head_profile_attr;
?>
>
	<meta http-equiv="X-UA-Compatible" content="IE=8" />
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<title><?php 
bb_title();
?>
</title>
	<link rel="stylesheet" href="<?php 
bb_stylesheet_uri();
?>
" type="text/css" />
<?php 
if ('rtl' == bb_get_option('text_direction')) {
    ?>
	<link rel="stylesheet" href="<?php 
    bb_stylesheet_uri('rtl');
    ?>
" type="text/css" />
<?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";
}