在处理了 Loops 和 Wordpress 功能之后,这是我想出的唯一方法,可以用 和 自动显示“特色”alt == excerpt
图像title == title
。
这是最有效的方法吗?
<?php
query_posts(array('category_name' => 'Featured'));
if (have_posts()) : while(have_posts()) : the_post();
$alt = get_the_excerpt();
$title = get_the_title();
the_post_thumbnail( 'full', array('alt' => $alt, 'title' => $title, 'class' => 'bigImg') );
endwhile; endif;
?>
最让我烦恼的是我在循环中定义摘录和标题,因此我还必须在循环中显示我的哈希数组。只是有些东西让我觉得不舒服。