在首页发布特色图片显示

时间:2018-08-26 07:44:14

标签: php wordpress

我需要帮助才能在wordpress的主页上显示精选图片。我想我想念东西。

    <!-- POST FEATURE IMAGE-->
    <section id="project-features">
        <div class="container">
            <div class="section-header">
                <h2>PORTFOLIO</h2>
                
                <div class="row">

                            <div class="col-sm-4">
                                <!--feature image, if you not uploaded yet nothing happen-->
                                <?php 
                                    if(has_post_thumbnail()){
                                        the_post_thumbnail();
                                    }
                                ?>
                                <img src="<?php the_post_thumbnail(); ?>" alt="aaaa">
                            </div><!-- end col-->

                </div><!--end row-->

            </div><!--end section header-->
        </div><!-- end container-->
    </section><!--end project features-->

2 个答案:

答案 0 :(得分:0)

这应该很简单。在functions.php中启用帖子缩略图,在您的frontpage.php上阅读所有缩略图,根据需要对其进行样式设置,并永久链接到原始帖子,您可以在其中使用WordPress媒体加载图片。

答案 1 :(得分:0)

这很简单。如果您对PHP和WordPress有所了解,则可以创建一个帖子循环,然后只需在该帖子的详细信息上添加一个永久链接,然后仅在该帖子上打印出特色图片即可。您还可以在悬停时添加div并在其上打印帖子标题。