0
주중 가장 많이 본 게시물을 위젯에 표시하고 싶습니다.Query Jetpack Worpress 통계 목록
<?php
function filter_where($where = '') {
//posts in the last 30 days
$where .= " AND post_date > '" . date('Y-m-d', strtotime('-30 days')) . "'";
return $where;
}
add_filter('posts_where', 'filter_where');
query_posts('post_type=post&posts_per_page=4&orderby=rand&order=DESC');
while (have_posts()): the_post(); ?>
<li style="
margin-bottom: 5px;
background: transparent url(http://i.imgur.com/6ngfnNo.png) repeat scroll center top;
padding: 15px;
list-style-type: none;
width: 500px;
margin: 10px 0px 0px 10px;
"><a href="<?php the_permalink(); ?>" title="<?php printf(esc_attr('Permalink to %s'), the_title_attribute('echo=0')); ?>" rel="bookmark"><span class="tptn_title" style="
color: #fff;
text-transform: uppercase;
font-family: 'Montserrat-Bold', sans-serif;
"><?php the_title(); ?></span></a></li>
<?php
endwhile;
wp_reset_query();
?>
제트 팩이 가장 많이 본 게시물을 조회 할 수 없기 때문에이 메일을 사용하고 있습니다. 누군가 나를 도울 수 있습니까?
당신은이 방법을 시도 할 수 있습니다