ابدأ بالتواصل مع الأشخاص وتبادل معارفك المهنية

أنشئ حسابًا أو سجّل الدخول للانضمام إلى مجتمعك المهني.

متابعة

How to create custom post type in WordPress?

user-image
تم إضافة السؤال من قبل Mohammad Abdullah , PHP Developer , SManik Technology Pvt Ltd
تاريخ النشر: 2017/10/04
Mohammad Aslam
من قبل Mohammad Aslam , Sr. Web & Mobile Developer , Sedar Decor Factory LLC.

Add Below code in active theme function.php file/ Our custom post type function function create_posttype() {       register_post_type( 'movies',      // CPT Options         array(             'labels' => array(                 'name' => __( 'CPT plural name' ),                 'singular_name' => __( 'CPT singular name' )             ),             'public' => true,             'has_archive' => true,             'rewrite' => array('slug' => 'CPT slug'),         )     ); } // Hooking up our function to theme setup add_action( 'init', 'create_posttype' );

المزيد من الأسئلة المماثلة