Skip to content

Instantly share code, notes, and snippets.

View musaghauri's full-sized avatar
🎯
Focusing

Muhammad Musa musaghauri

🎯
Focusing
View GitHub Profile
@musaghauri
musaghauri / portfolio.php
Last active February 21, 2019 14:53
Portfolio - Wordpress Custom Post Type
<?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();
?>
@musaghauri
musaghauri / portfolio-custom-post-type.php
Last active February 20, 2019 13:49
Portfolio Custom Post Type
<?php
// Creates Portfolio Custom Post Type
function portfolio_init() {
$args = array(
'label' => 'Portfolios',
'public' => true,
'show_ui' => true,
'capability_type' => 'post',
'hierarchical' => false,