Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter halbo1

    (@halbo1)

    Thanks for the reply and please excuse my ignorance. One day I will hire someone to really put this together for me……but where exactly do I put this code…do i paste it using the editor section and then the header.php?

    here is what is in there now:
    <?php
    /**
    * The header template
    *
    * @package wplook
    * @subpackage BlogoLife
    * @since BlogoLife 1.0
    */
    ?>
    <?php global $options;
    foreach ($options as $value) {
    if (isset($value[‘id’]) && get_option( $value[‘id’] ) === FALSE && isset($value[‘std’])) {
    $$value[‘id’] = $value[‘std’];
    }
    elseif (isset($value[‘id’])) { $$value[‘id’] = get_option( $value[‘id’] ); }
    }?>
    <!DOCTYPE html>
    <html <?php language_attributes(); ?>>
    <head>
    <meta charset=”<?php bloginfo( ‘charset’ ); ?>” />
    <title><?php global $page, $paged;
    wp_title( ”, true, ‘right’ );
    // Add the blog description for the home/front page.
    $site_name = get_bloginfo( ‘name’, ‘display’ );
    if ( $site_name && ( is_home() || is_front_page() ) )
    echo ” $site_name”;
    // Add a page number if necessary:
    if ( $paged >= 2 || $page >= 2 )
    echo ‘ | ‘ . sprintf( __( ‘Page %s’, ‘wplook’ ), max( $paged, $page ) );
    ?></title>
    <?php wplook_meta_description();?>

    <meta name=”keywords” content=”<?php echo $wpl_meta_keywords; ?>” />

    Thanks in advance for your help.
    Hal

    hello….did you ever get an answer? I have a similar issue. thanks

Viewing 2 replies - 1 through 2 (of 2 total)