• Moderatore

    Problema Titolo

    Salve,
    sul mio blog ho installato All in one Seo Pack ed su Post Title Format ho impostato

    %category_title% | %post_title% 
    

    C'è un problema.
    Con il tema iBlog il titolo è normale con il tema surfing-bbdream al titolo mi si legge solo il nome dell'articolo.

    Voi mi consigliate di lasciare così com'è o impostare category title e post title?

    Se devo impostare category title e post title come posso riparare a questo problema?

    Michele


  • User Attivo

    Io installerei:

    post title - nome sito

    al massimo

    post title - category title - nome sito

    Per modificarlo devi aprire la pagina del tema e controllare il tag del titolo 🙂

    In bocca al lupo!
    Davide


  • Moderatore

    Il tag del titolo è

    <title><?php if(is_home()) { echo bloginfo('name'); } else { wp_title('');  } ?></title>
    

    Preso dall'header.
    Come lo devo impostare per far sì che sia Titolo Post - Nome sito

    ?


  • User Attivo

    Prova:

    <title><?php if(is_home()) { wp_title(''); } else { echo bloginfo('name'); } ?></title>


  • Moderatore

    No.
    In index non mi mette titolo e negli articoli mi mette come titolo il nome del blog


  • User Attivo

    <? $theTitle=wp_title(" - ", false); if($theTitle != "") { ?><title><?php echo wp_title("",false); ?> - <?php bloginfo('name'); ?></title>

    Io uso questa 🙂


  • Moderatore

    Mi da questo errore
    Parse error: syntax error, unexpected $end in /home/mhd-01/michelepapaleo.it/htdocs/wp-content/themes/surfing-bbdream/header.php on line **34

    **e il contenuto dell'header è

    [php]<?php session_start(); ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="w3.org/1999/xhtml">

    <head profile="gmpg.org/xfn/11">
    <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />

    <title><? $theTitle=wp_title(" - ", false); if($theTitle != "") { ?><title><?php echo wp_title("",false); ?> - <?php bloginfo('name'); ?></title>
    <meta name="google-site-verification" content="ChDtJk6hJAcTpy_G2bWE4cSvKje9D1lRBloecimJUKU" />
    <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats -->
    <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="all" />
    <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
    <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
    <!--[if IE 6]>
    <link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/ie6.css" type="text/css" />

    <![endif]-->

    <?php wp_head(); ?>
    </head>
    <body>
    <div id="page"> <div id="container">

        <div class="rss"><a href="<?php bloginfo('rss2_url'); ?>">Feed RSS</a></div>
    

    <script type="text/javascript">
    var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "");
    document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
    </script>
    <script type="text/javascript">
    try {
    var pageTracker = _gat._getTracker("****");
    pageTracker._trackPageview();
    } catch(err) {}</script>
    <!--/header -->[/php]


  • Moderatore

    Nessuno sa niente?