AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
``` /** * Function to make it possible to query on is_post_type() * * source: http://wordpress.stackexchange.com/a/22166/2015 */ function is_post_type( $type ) { global $wp_query; if ( $type == get_post_type( $wp_query->post->ID) ) return true; return false; } /** * EXAMPLE * Now you can enqueue styles or scripts only for a specific Custom Post Type */ if ( is_single() && is_post_type( 'cpt-name' ) ) { // the script and/or style you want to enqueue } ```