芝麻web文件管理V1.00
编辑当前文件:/home/dcqnetm/intuns/wp-content/plugins/tutor/classes/Course_Embed.php
course_post_type && function_exists( 'is_embed' ) && is_embed() ) { if ( 'single-course' === $template ) { $template_location = tutor()->path . 'templates/course-embed.php'; } } return $template_location; } /** * Check if current course is embedded * * @return boolean */ public static function is_embed_course() { $post_id = get_the_ID(); if ( get_post_type( $post_id ) === tutor()->course_post_type && function_exists( 'is_embed' ) && is_embed() ) { return true; } return false; } }