Skip to content

Commit

Permalink
Merge pull request #13 from 40Digits/pr-sjr-scrub-cpt-function
Browse files Browse the repository at this point in the history
Fix inconsistencies with our Register CPT Function file
  • Loading branch information
ckhicks authored Sep 25, 2017
2 parents 306f8b2 + 85ba46d commit b78d7c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions functions/wordpress/custom-post-types.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
// http://codex.wordpress.org/Function_Reference/register_post_type
// https://codex.wordpress.org/Function_Reference/register_post_type
function register_custom_post_types() {

/*
Expand Down Expand Up @@ -40,7 +40,7 @@ function register_custom_post_types() {
'menu_icon' => 'dashicons-groups',
'supports' => array('title', 'page-attributes')
);
register_post_type('portfolio', $args);
register_post_type('movie', $args);
*/

Expand Down

0 comments on commit b78d7c8

Please sign in to comment.