我正在使用以下代码打印casa中“我的图像”文件夹中的另一幅图像。一篇帖子没有缩略图,但它在else语句中给了我错误,说明存在语法错误:
<?php if ( has_post_thumbnail() ) {
echo \'<a href="<?php the_permalink(); ?>"> <figure><?php the_post_thumbnail(); ?></figure></a>\';
}
else {
echo \'<figure><img src="<?php echo get_bloginfo( \'template_directory\' ); ?>/images/stone.jpg" /></figure></a>\';
}
?>
但是,如果粘贴此代码:
<?php if ( has_post_thumbnail() ) {
echo \'<a href="<?php the_permalink(); ?>"> <figure><?php the_post_thumbnail(); ?></figure></a>\';
}
else{
}
?>
它不会给出错误,但也不会显示缩略图
希望你能帮忙