at path:
ROOT
/
wp-content
/
plugins
/
kadu-plugin
/
inc
/
post-type
/
template.php
run:
R
W
Run
listing_taxnomy.php
1.24 KB
2024-10-16 22:18:55
R
W
Run
Delete
Rename
template.php
523 By
2024-10-16 22:18:55
R
W
Run
Delete
Rename
error_log
up
📄
template.php
Save
<?php if(!function_exists('kadu_page_template_type') ){ function kadu_page_template_type(){ register_post_type( 'kadu_template', array( 'labels' => array( 'name' => __( 'Template','kadu-plugin' ), 'singular_name' => __( 'Template','kadu-plugin' ) ), 'public' => true, 'publicly_queryable' => true, 'show_in_menu' => false, 'show_in_nav_menus' => false, 'supports' => ['title', 'elementor'] ) ); } add_action( 'init','kadu_page_template_type',2 ); }