mirror of
https://github.com/ascribe/wp-theme
synced 2024-12-22 17:23:55 +01:00
random order, output maximum of 3 testimonials
This commit is contained in:
parent
576b8a025b
commit
9fa4505694
@ -1184,8 +1184,10 @@ class Subtemplate {
|
|||||||
public function testimonials($subtemplateTitle) {
|
public function testimonials($subtemplateTitle) {
|
||||||
|
|
||||||
$args = array(
|
$args = array(
|
||||||
'post_type' => 'testimonial',
|
'post_type' => 'testimonial',
|
||||||
'order' => 'ASC'
|
'order' => 'ASC',
|
||||||
|
'orderby' => 'rand',
|
||||||
|
'posts_per_page' => 3
|
||||||
);
|
);
|
||||||
|
|
||||||
$testimonials = get_posts($args);
|
$testimonials = get_posts($args);
|
||||||
|
Loading…
Reference in New Issue
Block a user