php 通过邮寄格式获得帖子

Posted

tags:

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

<?php $myposts = new WP_Query( array(
								'posts_per_page' => 2,
							    'tax_query' => array(
							        array(                
							            'taxonomy' => 'post_format',
							            'field' => 'slug',
							            'terms' => array( 
							                'post-format-image'
							            ),
							            'operator' => 'NOT IN'
							        )
							    )
							));
							// Open the loop
							if ( $myposts->have_posts() ) : while ( $myposts->have_posts() ) : $myposts->the_post(); ?>
								<div class="row">
									<div class="col-md-2">
										<p class="date"><span class="day"><?php the_time('j'); ?></span><i>/</i><span class="month"><?php the_time('m'); ?></span></p>
									</div>
									<div class="col-md-9">
										<a class="highlite-sm" href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
										<p><?php the_excerpt(); ?></p>
									</div>
								</div> 
							<?php endwhile; endif; wp_reset_postdata();  ?>

以上是关于php 通过邮寄格式获得帖子的主要内容,如果未能解决你的问题,请参考以下文章

我用于邮寄表格的 php 脚本不起作用

通过Facebook APP获得与计数一样的帖子

使用帖子传递字符串时,正则表达式不起作用

如何获得每个帖子的 php 总评论数?

获取个人资料的 Instagram 帖子计数

php 在wordpress中获得帖子的标题