芝麻web文件管理V1.00
编辑当前文件:/home/prismawe/backup/gerard-philippe-peinture.fr/wp-content/plugins/iron_elements/index.php
$v){ if($v==1){ foreach($saral_cpt_args as $cpt_name => $cpt_arg){ if($k == $cpt_name){ register_post_type($cpt_name,$cpt_arg); } } } } } } add_action( 'init', 'iron_init_cpt' ); } /*----------- Function to change the custom post type slug----------*/ add_filter( 'register_post_type_args', 'saral_change_post_type_slug', 10, 2 ); function saral_change_post_type_slug( $args, $post_type ) { global $saral_options; if ( 'saral_team' === $post_type ) { $old_slug = $args['rewrite']['slug']; $args['rewrite']['slug'] = ($saral_options['team_post_slug'] != '') ? $saral_options['team_post_slug'] : 'saral_team'; saral_custom_rewrite_rule($old_slug, $saral_options['team_post_slug']); } if( $post_type === 'saral_service' ){ $old_slug = $args['rewrite']['slug']; $args['rewrite']['slug'] = ($saral_options['service_post_slug'] != '') ? $saral_options['service_post_slug'] : 'saral_service'; saral_custom_rewrite_rule($old_slug, $saral_options['service_post_slug']); } if( $post_type === 'saral_testimonial' ){ $old_slug = $args['rewrite']['slug']; $args['rewrite']['slug'] = ($saral_options['testimonial_post_slug'] != '') ? $saral_options['testimonial_post_slug'] : 'saral_testimonial'; saral_custom_rewrite_rule($old_slug, $saral_options['testimonial_post_slug']); } return $args; }