Not working on Page Template
-
I created a page template that calls a post type by query:
$type = array(‘listing’);
$args=array(
‘post_type’ => $type,
‘post_status’ => array( ‘pending’, ‘draft’, ‘publish’, ‘future’ ),
‘orderby’=> ‘title’,
‘order’ => ‘ASC’,
‘posts_per_page’ => 100,
‘paged’ => $paged,
‘caller_get_posts’=> 1
);When I put in the shortcode through the premium version, it does not work. It will show the Letters but it does not link.
Is there a way to do this through a custom query loop on a page template?
Shawn
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Not working on Page Template’ is closed to new replies.