Category: Misc

  • WordPress | Items of Custom Post Type

    <?php /** * Template Name: Page of Products * * Selectable from a dropdown menu on the edit page screen. */ ?> <?php get_header(); ?> <div id=”container”> <div id=”content”> <?php $type = ‘products’; $args=array( ‘post_type’ => $type, ‘post_status’ => ‘publish’, ‘posts_per_page’ => -1, ‘caller_get_posts’=> 1 $my_query = null; $my_query = new WP_Query($args); if( $my_query->have_posts() )…