将<h1>标签添加到wordpress功能</h1>的正确方法

时间:2011-03-02 16:25:50

标签: php wordpress tags

我正在自定义Wordpress插件,似乎无法弄清楚如何正确地将<h1>标记添加到它带来我的帖子标题的部分。我每次尝试都会遇到错误。

代码如下:

<?php query_posts('cat=3'); ?>

<?php 

    $category = get_option('wpns_category');

    $n_slices = get_option('wpns_slices');

?>

<?php if( have_posts() ) : while( have_posts() ) : the_post(); ?>

<?php if ( has_post_thumbnail() ) {
            echo '<a href="';
            the_permalink();
            echo '">';
the_post_thumbnail('slider-image', array( 'alt' =>
get_the_title(), 'title' => get_the_title() . "<br /><br /> <span>" . get_the_excerpt() .
"</span>"));
            echo '</a>'; } ?>

<?php endwhile; ?>
<?php else : ?>
<h2>Not Found</h2>
<?php endif; ?>

我试过<h1>get_the_title(), 'title' =></h1>,但显然这不正确。有什么建议吗?

1 个答案:

答案 0 :(得分:2)

  'title' => "<h1>" . get_the_title() . "</h1><br/>.....