如何在图片中添加推荐信?

时间:2010-12-01 作者:shalu

有人知道如何在WordPress中添加带有图像的推荐信吗?有没有满足我要求的插件?我搜索了一下,但没有找到。它必须支持PHP版本4.4.9。

1 个回复
SO网友:Vlad.P

创建一个名为Testimonials 然后,在主题文件夹中添加一个名为testimonials.php.

将其添加到新创建的文件中:

<div id="testimonials">
    <?php $args = array(\'caller_get_posts\' => 1, \'post_type\' => \'testimonials\', \'post_status\' => \'publish\', \'posts_per_page\' => 5);
    query_posts($args);
    if (have_posts()) : while (have_posts()) : the_post(); 
    $image = get_post_meta($post->ID, \'testimonial-image\', true);
    ?>

        <div class="testimonail">
            <img src="<?php echo $image; ?>" width="" height="" alt="<?php the_title(); ?>" />
            <h2><?php the_title(); ?></h2>
            <?php the_content(); ?>
        </div>

    <?php endwhile; else : endif; ?>
</div>
然后添加您希望在何处显示推荐信。示例页脚。php

现在,您只需添加一个新帖子并在Testimonials 类别对于图像,创建一个名为testimonial-image 对于值,添加图像的路径(例如:http://example.com/image.png).

你可以走了。

相关推荐

如何在图片中添加推荐信? - 小码农CODE - 行之有效找到问题解决它

如何在图片中添加推荐信?

时间:2010-12-01 作者:shalu

有人知道如何在WordPress中添加带有图像的推荐信吗?有没有满足我要求的插件?我搜索了一下,但没有找到。它必须支持PHP版本4.4.9。

1 个回复
SO网友:Vlad.P

创建一个名为Testimonials 然后,在主题文件夹中添加一个名为testimonials.php.

将其添加到新创建的文件中:

<div id="testimonials">
    <?php $args = array(\'caller_get_posts\' => 1, \'post_type\' => \'testimonials\', \'post_status\' => \'publish\', \'posts_per_page\' => 5);
    query_posts($args);
    if (have_posts()) : while (have_posts()) : the_post(); 
    $image = get_post_meta($post->ID, \'testimonial-image\', true);
    ?>

        <div class="testimonail">
            <img src="<?php echo $image; ?>" width="" height="" alt="<?php the_title(); ?>" />
            <h2><?php the_title(); ?></h2>
            <?php the_content(); ?>
        </div>

    <?php endwhile; else : endif; ?>
</div>
然后添加您希望在何处显示推荐信。示例页脚。php

现在,您只需添加一个新帖子并在Testimonials 类别对于图像,创建一个名为testimonial-image 对于值,添加图像的路径(例如:http://example.com/image.png).

你可以走了。

相关推荐