Skip to content

Instantly share code, notes, and snippets.

@wpmu-authors
Last active February 3, 2021 17:39
Show Gist options
  • Save wpmu-authors/b44bf08bf511277184a49de53c0c3ed8 to your computer and use it in GitHub Desktop.
Save wpmu-authors/b44bf08bf511277184a49de53c0c3ed8 to your computer and use it in GitHub Desktop.
best-activation.php
add_action( 'init', 'my_custom_post_type' );
function my_custom_post_type() {
$args = array(
'public' => true,
'label' => 'Board Games'
);
register_post_type( 'boardgames', $args );
}
function myplugin_flush_rewrites() {
my_custom_post_type();
flush_rewrite_rules();
}
register_activation_hook( __FILE__, 'myplugin_flush_rewrites' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment