Aiuto!!! Sono un principiante e dopo aver creato una pagina, cliccandoci sopra esce:
Parse error: syntax error, unexpected $end in /membri/molochioieri/blog/wp-content/themes/InSense/page.php on line 36
Aiutatemi per favore
Aiuto!!! Sono un principiante e dopo aver creato una pagina, cliccandoci sopra esce:
Parse error: syntax error, unexpected $end in /membri/molochioieri/blog/wp-content/themes/InSense/page.php on line 36
Aiutatemi per favore
Puoi mostrare il contenuto di page.php?
credo manchi
alla fine..Codice PHP:
?>
ECCO:
Aiuto!!!Codice PHP:
<?php get_header(); ?>
<!-- Side ContentWrapper START -->
<div id="ContentWrapper">
<!-- Side SCS START -->
<div class="SCS">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h1><?php the_title(); ?></h1>
<div class="entry">
<?php the_content('<p class="serif">Read the rest of this page »</p>'); ?>
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
</div>
<?php endwhile; ?>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center"><?php _e("Sorry, but you are looking for something that isn't here."); ?></p>
<!-- Post END -->
</div>
<!-- Side SC END -->
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Ultima modifica di andreafallico : 11-05-2010 alle ore 22.07.07
Quel tipo di errore indica che un blocco di codice non è stato ancora chiuso da } per esempio e dunque il parser non si aspetta la fine del documento. Ed infatti a te manca la chiusura del blocco if-else:
A te manca quell'endif che ti ho aggiunto alla linea 23.Codice PHP:
<?php get_header(); ?>
<!-- Side ContentWrapper START -->
<div id="ContentWrapper">
<!-- Side SCS START -->
<div class="SCS">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h1><?php the_title(); ?></h1>
<div class="entry">
<?php the_content('<p class="serif">Read the rest of this page »</p>'); ?>
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
</div>
<?php endwhile; ?>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center"><?php _e("Sorry, but you are looking for something that isn't here."); ?></p>
<?php endif; ?>
<!-- Post END -->
</div>
<!-- Side SC END -->
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Ciao!
Grazie mille!!!!!!