Skip to content

Instantly share code, notes, and snippets.

@mhdizmni
mhdizmni / register-post-type.php
Created December 25, 2021 23:27 — forked from justintadlock/register-post-type.php
Help file when registering post types.
<?php
# Register custom post types on the 'init' hook.
add_action( 'init', 'my_register_post_types' );
/**
* Registers post types needed by the plugin.
*
* @since 1.0.0
* @access public