我究竟做错了什么...
这是一件很愚蠢的事情。
我想订购我的帖子,但无论我订购什么和订购什么,都没有任何效果!GRRR
<?php
$postCount = 0;
remove_filter('get_the_excerpt', 'replace_ellipsis');
remove_filter('excerpt_length', 'my_excerpt_length');
add_filter('get_the_excerpt', 'replace_ellipsis2');
add_filter('excerpt_length', 'my_excerpt_length2');
$args = array(
'post_type' => 'news',
'posts_per_page' => 9999,
'order' => 'ASC',
);
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
$postCount++;
?>
<div class = "anArticle" style = "<?php if(!$postCount % 3 == 1){ echo 'margin-right:0px;'; } ?>" onclick = "location.href='<?php echo the_permalink(); ?>';">
<div class = "title"><a href = "<?php echo the_permalink(); ?>"><?php if(!get_field('short_title')){echo limit_length(get_the_title(), 48);}else{echo get_field('short_title') . '...';} ?></a></div>
<div class = "theDate"><? the_time(get_option('date_format')); ?></div>
<?php if(!get_field('caption')){the_excerpt();}else{the_field('caption'); echo '...';} ?>
<div class = "readMore"><a href = "<?php echo the_permalink(); ?>">Read more... </a></div>
</div>
<?php
endwhile;
?>
有什么让你觉得愚蠢的事情吗?
您知道通常可以阻止帖子正确排序的任何事情吗?