PluginProbe
WP Ultimate Post Grid / 2.5.0
WP Ultimate Post Grid v2.5.0
4.1.1 trunk 1.5 1.6 1.7 1.7.1 1.7.2 1.8 1.9 2.0 2.1 2.2 2.3 2.4.0 2.5.0 2.6.0 2.7.0 2.8.0 2.8.2 3.0.0 3.3.0 3.4.0 3.5.0 3.6.0 3.7.0 All 32 releases
wp-ultimate-post-grid / helpers / vafpress / vafpress_shortcode_whitelist.php

vafpress_shortcode_whitelist.php in WP Ultimate Post Grid 2.5.0, at helpers/vafpress/vafpress_shortcode_whitelist.php

26 lines 612 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 function wpupg_shortcode_generator_grids_by_date()
3 {
4 $args = array(
5 'post_type' => WPUPG_POST_TYPE,
6 'post_status' => 'any',
7 'posts_per_page' => -1,
8 'nopaging' => true,
9 );
10
11 $query = new WP_Query( $args );
12 $posts = $query->have_posts() ? $query->posts : array();
13 $grids = array();
14
15 foreach ( $posts as $post )
16 {
17 $grids[] = array(
18 'value' => $post->post_name,
19 'label' => $post->post_title,
20 );
21 }
22
23 return $grids;
24 }
25
26 VP_Security::instance()->whitelist_function('wpupg_shortcode_generator_grids_by_date');