php 帖子输出

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 帖子输出相关的知识,希望对你有一定的参考价值。


<?php 

$posts = get_field('product-siblings');

if( $posts ): ?>

<div class="item__more">
    <div class="item__title title"><span>Другие наборы из этой серии</span></div>
    <div  class="item__more__carousel">
	    <?php foreach( $posts as $post): // variable must be called $post (IMPORTANT) ?>
	        <?php setup_postdata($post); ?>

		        <a href="<?php the_permalink(); ?>" class="item__more__item" product-id="139">
		            <img src="/wp-content/uploads/2017/02/freestyle.jpg">
		            <div class="item-modal__more__name"><?php the_title(); ?></div>
		        </a>

	    <?php endforeach; ?>
    </div>
</div>

    <?php wp_reset_postdata(); // IMPORTANT - reset the $post object so the rest of the page works correctly ?>
<?php endif; ?>

以上是关于php 帖子输出的主要内容,如果未能解决你的问题,请参考以下文章

php 帖子输出

php 帖子输出

PHP 删除、编辑、保存帖子

使用 PHP 和 Kohana 3,可以递归地查找和输出任何模型的关系吗?

用php获取ajax帖子

如何使用 PHP 将 WordPress 帖子堆叠到 3 个单独的列中?