123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- <?php
- /**
- * Course functions and definitions
- *
- * @link https://developer.wordpress.org/themes/basics/theme-functions/
- *
- * @package Course
- * @since Course 1.0
- */
- if ( ! function_exists( 'course_support' ) ) :
- /**
- * Sets up theme defaults and registers support for various WordPress features.
- *
- * @since Course 1.0
- *
- * @return void
- */
- function course_support() {
- add_theme_support( 'sensei-learning-mode' );
- // Enqueue editor styles.
- add_editor_style( 'style.css' );
- add_editor_style( 'learning-mode.css' );
- }
- endif;
- add_action( 'after_setup_theme', 'course_support' );
- if ( ! function_exists( 'course_scripts' ) ) :
- /**
- * Enqueue scripts and styles.
- *
- * @since Course 1.0
- *
- * @return void
- */
- function course_scripts() {
- wp_register_style( 'course-style', get_stylesheet_directory_uri() . '/style.css', array(), wp_get_theme()->get( 'Version' ) );
- wp_enqueue_script( 'course-header', get_template_directory_uri() . '/assets/js/header.js', [], wp_get_theme()->get( 'Version' ), true );
- wp_enqueue_style( 'course-style' );
- /**
- * Temporary Hook to skip the learning mode style when the Sensei LMS is able to provide it.
- * It is only used to continue loading the deprecated styles if a old sensei version is installed.
- */
- $use_deprecated_style = apply_filters( 'course_learning_mode_load_styles', true );
-
- if ( class_exists( 'Sensei_Main' ) && $use_deprecated_style ) {
- wp_register_style( 'course-sensei-learning-mode', get_stylesheet_directory_uri() . '/learning-mode.css', array(), wp_get_theme()->get( 'Version' ) );
- wp_enqueue_style( 'course-sensei-learning-mode' );
- }
- }
- endif;
- add_action( 'wp_enqueue_scripts', 'course_scripts' );
- function course_theme_init() {
- add_option( 'course_theme_variation', 'default' );
- register_block_style(
- 'core/navigation-link',
- array(
- 'name' => 'navigation-link-button',
- 'label' => __( 'Button', 'course' ),
- )
- );
- }
- add_action( 'init', 'course_theme_init' );
- /**
- * Register Sensei LMS block patterns category.
- */
- function course_register_block_patterns_category() {
- register_block_pattern_category(
- 'sensei-lms',
- [ 'label' => 'Sensei LMS' ]
- );
- }
- add_action( 'init', 'course_register_block_patterns_category' );
- /**
- * Determine the theme variation and save in option.
- *
- * @param int $post_id Post ID.
- * @param WP_Post $post Post object.
- * @param bool $update Whether this is an existing post being updated or not.
- */
- function course_save_global_styles( $post_id, $post, $update ) {
- if ( 'wp_global_styles' !== $post->post_type ) {
- return;
- }
- $global_styles = json_decode( $post->post_content, true );
- $global['settings'] = isset( $global_styles['settings'] ) ? $global_styles['settings'] : array();
- $global['styles'] = isset( $global_styles['styles'] ) ? $global_styles['styles'] : array();
- $variations = WP_Theme_JSON_Resolver::get_style_variations();
- $current_variation = 'default';
- foreach ( $variations as $variation ) {
- if ( $variation['settings'] === $global['settings'] && $variation['styles'] === $global['styles'] ) {
- $current_variation = sanitize_title( $variation['title'] );
- }
- }
- update_option( 'course_theme_variation', $current_variation );
- }
- add_action( 'save_post', 'course_save_global_styles', 10, 3 );
- /**
- * Add the theme variation to the body class.
- *
- * @param array $classes Array of body classes.
- */
- function course_add_variation_body_class( $classes ) {
- $current_variation = get_option( 'course_theme_variation' );
- if ( ! $current_variation ) {
- return $classes;
- }
- $classes[] = 'is-' . $current_variation;
- return $classes;
- }
- add_action( 'body_class', 'course_add_variation_body_class' );
|