本文整理匯總了PHP中qa_template_paginations函數的典型用法代碼示例。如果您正苦於以下問題:PHP qa_template_paginations函數的具體用法?PHP qa_template_paginations怎麽用?PHP qa_template_paginations使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了qa_template_paginations函數的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: while
while (have_posts()) {
the_post();
get_template_part('template/question', 'loop');
}
} else {
echo '<h2>';
_e('No questions has been created yet.', ET_DOMAIN);
echo '</h2>';
}
wp_reset_query();
?>
</ul>
</div><!-- END MAIN-QUESTIONS-LIST -->
<div class="row paginations home">
<div class="col-md-12">
<?php
$paged = get_query_var('paged') ? get_query_var('paged') : 1;
qa_template_paginations($wp_query, $paged);
?>
</div>
</div><!-- END MAIN-PAGINATIONS -->
<div class="clearfix"></div>
<?php
do_action('qa_btm_questions_listing');
?>
</div>
<?php
get_sidebar('right');
get_footer();
示例2: WP_Query
$args['posts_per_page'] = $_GET['numbers'];
}
$search_query = new WP_Query($args);
if ($search_query->have_posts()) {
while ($search_query->have_posts()) {
$search_query->the_post();
get_template_part('template/question', 'loop');
}
} else {
echo '<h2>';
_e('No results for keyword:', ET_DOMAIN);
echo '<strong><em>' . esc_attr($keyword) . '</em></strong>';
echo '</h2>';
}
wp_reset_query();
?>
</ul>
</div><!-- END MAIN-QUESTIONS-LIST -->
<div class="row paginations home">
<div class="col-md-12">
<?php
qa_template_paginations($search_query, $paged);
?>
</div>
</div><!-- END MAIN-PAGINATIONS -->
</div>
<?php
get_sidebar('right');
get_footer();