'post', 'show' => 4, 'template' => 'loop-template.php', 'css' => 'true', 'wrapper' => 'true', 'ignore_sticky_posts' => 1, 'orderby' => '', 'order' => 'DESC', 'class' => 'c-accl-post-list', 'tax' => '', 'term' => '' ), $atts)); //default orderby if ($type == 'post' && $orderby == '') { $orderby = 'date'; } elseif($orderby == '') { $orderby = 'menu_order'; } $args = [ 'public' => true ]; $output = ''; $post_types = get_post_types($args, 'names'); $theme_directory = get_stylesheet_directory() . '/'; $theme_template = $theme_directory . $template; $wrapperOpen = ($wrapper == 'true') ? '
'; $output .= '' . $type . ' '; $output .= __('is not a public post type on this website. The following post type are available: -', 'ac-wp-custom-loop-shortcode'); $output .= '
'; $output .= ''; $output .= __('Please edit the short code to use one of the available post types.', 'ac-wp-custom-loop-shortcode'); $output .= '
'; $output .= '[ ac_custom_loop type="post" show="4"]';
return $output;
}
global $wp_query;
$temp_q = $wp_query;
$wp_query = null;
$wp_query = new WP_Query();
$wp_query->query(array(
'post_type' => $type,
'showposts' => $show,
'orderby' => $orderby,
'order' => $order,
'ignore_sticky_posts' => $ignore_sticky_posts,
'taxonomy' => $tax,
'term' => $term
));
if (have_posts()) :
$output .= $wrapperOpen;
while (have_posts()):
the_post();
ob_start();
?>