Skip to content

Instantly share code, notes, and snippets.

@crodrigoturner
crodrigoturner / WP_ customposttype.txt
Last active April 30, 2021 07:40
WP_ customposttype
add_action( 'init', 'cpt' );
function cpt() {
$args = array(
'public' => true,
'label' => 'Notes'
);
register_post_type( 'notes', $args );
}
function reg_cat() {
<?php if ( ! dynamic_sidebar( 'Widget Area 1' ) ) : ?>
<?php endif; ?>
<ul>
<?php wp_list_categories( array(
'orderby' => 'name',
'show_count' => true,
'exclude' => array( 10 )
) ); ?>
</ul>
<ul>
<?php wp_list_pages( array(
'title_li' => ''
) ); ?>
</ul>