Skip to content

Instantly share code, notes, and snippets.

@jprieton
Created March 2, 2016 15:30
Show Gist options
  • Save jprieton/15bdb7e953d9ec3ec92c to your computer and use it in GitHub Desktop.
Save jprieton/15bdb7e953d9ec3ec92c to your computer and use it in GitHub Desktop.
Set WordPress post hierarchical
<?php
add_post_type_support( 'post', 'page-attributes' );
add_action( 'init', function() {
global $wp_post_types;
$wp_post_types['post']->hierarchical = true;
}, 99 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment