嘿,我在wordpress中的php代码有问题。如果有图像,我想要一个不同的分类。因此,如果存在非图像,我可以使文本居中,如果存在则使其向右浮动。
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php if(has_post_thumbnail() ); ?>
<section class="post">
<?php the_post_thumbnail('full'); ?>
<div class="posts-data">
<h2><?php the_title(); ?></h2>
<p><?php the_excerpt(); ?></p>
</div>
</section>
<?php else: ?>
<section class="post-no-img">
<h2><?php the_title(); ?></h2>
<p><?php the_excerpt(); ?></p>
</section>
<?php endif; ?>
<?php endwhile; else: ?>
<p>There are no post or pages</p>
<?php endif; ?>
我得到了这个想法:
解析错误:语法错误,意外&#39;否则&#39;第12行的C:\ xampp \ htdocs \ Fortagsida \ wp-content \ themes \ foretagblog \ front-page.php中的(T_ELSE)
第12行是。
答案 0 :(得分:1)
在第3行,它应该是<?php if(has_post_thumbnail() ): ?>
(:而不是;)
答案 1 :(得分:0)
您可能希望为第二个 if
添加“:”