adding custom post types to a page
-
Im trying to add custom post types to a page. They are made up of custom templates and custom fields and display fine. I have tried the code below from codex but I dont get anything appearing in the page
<?php $args = array( 'numberposts' => 2, 'orderby' => 'rand', 'post_type' => 'movies', 'genre' => 'actors', 'post_status' => 'red' ); $show_albums = get_posts ( $args ); ?>
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘adding custom post types to a page’ is closed to new replies.