php 帖子em destaque - 粘贴帖子
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 帖子em destaque - 粘贴帖子相关的知识,希望对你有一定的参考价值。
function destaques() {
ob_start();
echo'<div class="ultimos-posts">';
global $post;
$stickies = get_option( 'sticky_posts' );
$args = array(
'post_type' => 'post',
'posts_per_page' => 4,
//'ignore_sticky_posts' => 1,
'post__in' => $stickies,
'order' => 'DESC',
'orderby' => 'meta_value',
);
$query = new WP_Query( $args );
if ( $query->have_posts() ) :
while ( $query->have_posts() ) : $query->the_post();
$post_id = get_the_ID();
$category_object = get_the_category($post_id);
$category_name = $category_object[0]->name;
echo '<div class="item">';
echo '<a href="'.get_the_permalink().'">';
echo '<div class="data">';
echo '<span class="dia">'.get_the_date( 'j' ).'</span>';
echo '<span class="mes">'.get_the_date( 'M' ).'</span>';
echo '</div>';
echo '<div class="texto">';
echo '<h3>'.get_the_title().'</h3>';
echo '<span>'.$category_name.'</span>';
echo '</div>';
echo '</a>';
echo '</div>';
endwhile;
endif;
wp_reset_postdata();
echo'</div>';
$content = ob_get_contents();
ob_end_clean();
return $content;
}
add_shortcode('posts-em-destaque', 'destaques');
以上是关于php 帖子em destaque - 粘贴帖子的主要内容,如果未能解决你的问题,请参考以下文章
php 忽略ajax请求的粘贴帖子
php 排除粘贴帖子
php 首先显示粘贴帖子
如何在自定义帖子类型UI菜单图标区域添加字体真棒图标?
使用帖子传递字符串时,正则表达式不起作用
php 来自帖子类型的特定类别帖子的帖子