This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php endif; ?> | |
<?php | |
/** | |
* Template Name: Portfolio | |
**/ | |
$query = new WP_Query( array('post_type' => 'game-reviews','posts_per_page' => 5 ) ); | |
while ( $query->have_posts() ) : $query->the_post(); | |
// Your code e.g. "the_content(); | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Creates Portfolio Custom Post Type | |
function portfolio_init() { | |
$args = array( | |
'label' => 'Portfolios', | |
'public' => true, | |
'show_ui' => true, | |
'capability_type' => 'post', | |
'hierarchical' => false, |