我想在Wordpress主页上使用If,If else和else,我正在使用以下条件
<?php if ( has_post_thumbnail() ) {
the_post_thumbnail();
}?>
<?php if else {
<img src="<?php echo catch_that_image() ?>" width="64" height="64" alt="<?php the_title(); ?>" />
} else {
<img src="http://www.technoarea.in/wp-content/themes/TA/images/TA_Logo.png" width="64" height="64" alt="<?php the_title(); ?>" />}
?>
<?php ?>
Run Code Online (Sandbox Code Playgroud)
我想先在首页上显示缩略图,如果缩略图不可用,则必须使用帖子中的第一张图片作为缩略图,如果帖子中没有图片,则使用该图片
http://www.technoarea.in/wp-content/themes/TA/images/TA_Logo.png
Run Code Online (Sandbox Code Playgroud)
您能告诉我我在哪里错吗,因为上面的代码不起作用