problema file comments.php nel tema Delicious Magazine
Mi da questo errore: Parse error: syntax error, unexpected '}' in /membri/ideenelpiatto/ideenelpiatto/wp-content/themes/deliciousmagazine/comments.php on line 11
Cosa devo modificare qui sotto???
?php
// Do not delete these lines
if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
die ('Please do not load this page directly. Thanks!');
if ( post_password_required() ) { ?>
<p class="nocomments"><?php _e('This post is password protected. Enter the password to view comments.', 'woothemes') ?></p>
<?php else : // this is displayed if there are no comments so far ?>
<?php if ('open' == $post->comment_status) : ?>
<!-- If comments are open, but there are no comments. -->
<p class="nocomments"><?php _e('No comments yet.', 'woothemes') ?></p>
<?php else : // comments are closed ?>
<!-- If comments are closed. -->
<p class="nocomments"><?php _e('Comments are closed.', 'woothemes') ?></p>
<?php endif; ?>
<?php endif; ?>
</div> <!-- /#comments_wrap -->
<?php if ('open' == $post->comment_status) : ?>
<div id="respond">
<h3><?php comment_form_title( __('Leave a Reply', 'woothemes'), __('Leave a Reply to %s', 'woothemes') ); ?></h3>