Visualizzazione risultati 1 fino 3 di 3

Discussione: [WordPress] Errore di sintassi php

  1. #1
    Guest

    Predefinito [WordPress] Errore di sintassi php

    Che errore c'è che non mi fa accedere al blog?
    Codice PHP:
    <?php get_header(); ?>
    <?php
    if (have_posts()) : ?>
    <?php
    while (have_posts()) : the_post(); ?>

    <!--Start Post-->
    <div class="post" style="margin-bottom: 20px;">

    <div class="p-head">
    <p class="p-date"><?php the_time('d') ?> <?php the_time('M') ?>, <?php the_time('Y') ?></p>
    <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
    <p class="p-who">Posted by: <?php the_author() ?> In: <?php the_category('|') ?></p>
    </div>

    <div class="p-con">
    <?php the_content('Clicka per leggere l'articolo &raquo;'); ?>
    </div>

    <div class="p-com">
    <?php comments_popup_link('
    Nessun Commento', '<strong>1</strong> Commento', '<strong>%</strong> Commenti'); ?>
    </div>

    <?php if (function_exists('
    the_tags')) { ?> <?php the_tags('<div class="p-tag">Tags: ', ', ', '</div>'); ?> <?php } ?>

    </div>
    <!--End Post-->


    <?php endwhile; ?>
    <?php include("nav.php"); ?>
    <?php else : ?>



    <?php include("404.php"); ?>
    <?php endif; ?>

    <!--Track Theme-->
    <?php if (function_exists('
    trackTheme')) { ?>
    <?php trackTheme("fervens-a"); ?>
    <?php } ?>
    <!--Track Theme-->

    <?php get_footer(); ?>
    Ultima modifica di andreafallico : 13-04-2010 alle ore 12.59.26

  2. #2
    L'avatar di andreafallico
    andreafallico non è connesso Super Moderatore
    Data registrazione
    02-06-2009
    Messaggi
    1,981

    Predefinito

    L'errore è qui:
    Codice PHP:
    <?php the_content('Clicka per leggere l'articolo &raquo;'); ?>
    sostituiscilo con questo:
    Codice PHP:
    <?php the_content('Clicka per leggere l\'articolo &raquo;'); ?>

  3. #3
    Guest

    Predefinito

    Sistemato grazie mille ;)

Regole di scrittura

  • Non puoi creare nuove discussioni
  • Non puoi rispondere ai messaggi
  • Non puoi inserire allegati.
  • Non puoi modificare i tuoi messaggi
  •