tag in the document head, and expect WordPress to
* provide it for us.
*/
add_theme_support( 'title-tag' );
/*
* Enable support for Post Thumbnails on posts and pages.
*/
add_theme_support( 'post-thumbnails' );
/*
* Switch default core markup for search form, comment form, and comments
* to output valid HTML5.
*/
add_theme_support( 'html5', array(
'comment-form',
'comment-list',
'gallery',
'caption',
) );
// Add support for Block Styles.
add_theme_support( 'wp-block-styles' );
add_theme_support( 'editor-styles' );
/*
* This theme styles the visual editor to resemble the theme style,
* specifically font, colors, and column width.
*/
add_editor_style( array( 'assets/css/editor-style.css',
get_template_directory_uri() . '/assets/css/font-awesome.css',
) );
/*
* Set Custom Background
*/
add_theme_support( 'custom-background', array ('default-color' => '#ffffff') );
// Set the default content width.
$GLOBALS['content_width'] = 900;
// This theme uses wp_nav_menu() in header menu
register_nav_menus( array(
'primary' => __( 'Primary Menu', 'ayatherapycenter' ),
'footer' => __( 'Footer Menu', 'ayatherapycenter' ),
) );
$defaults = array(
'flex-height' => false,
'flex-width' => false,
'header-text' => array( 'site-title', 'site-description' ),
);
add_theme_support( 'custom-logo', $defaults );
// Define and register starter content to showcase the theme on new sites.
$starter_content = array(
'widgets' => array(
'sidebar-widget-area' => array(
'search',
'recent-posts',
'categories',
'archives',
),
'footer-column-1-widget-area' => array(
'recent-comments'
),
'footer-column-2-widget-area' => array(
'recent-posts'
),
'footer-column-3-widget-area' => array(
'calendar'
),
),
'posts' => array(
'home',
'blog',
'about',
'contact'
),
// Default to a static front page and assign the front and posts pages.
'options' => array(
'show_on_front' => 'page',
'page_on_front' => '{{home}}',
'page_for_posts' => '{{blog}}',
),
// Set the front page section theme mods to the IDs of the core-registered pages.
'theme_mods' => array(
'ayatherapycenter_slider_display' => 1,
'ayatherapycenter_slide1_image' => esc_url( get_template_directory_uri() . '/images/slider/1.jpg' ),
'ayatherapycenter_slide2_image' => esc_url( get_template_directory_uri() . '/images/slider/2.jpg' ),
'ayatherapycenter_slide3_image' => esc_url( get_template_directory_uri() . '/images/slider/3.jpg' ),
),
'nav_menus' => array(
// Assign a menu to the "primary" location.
'primary' => array(
'name' => __( 'Primary Menu', 'ayatherapycenter' ),
'items' => array(
'link_home',
'page_blog',
'page_contact',
'page_about',
),
),
// Assign a menu to the "footer" location.
'footer' => array(
'name' => __( 'Footer Menu', 'ayatherapycenter' ),
'items' => array(
'link_home',
'page_about',
'page_blog',
'page_contact',
),
),
),
);
$starter_content = apply_filters( 'ayatherapycenter_starter_content', $starter_content );
add_theme_support( 'starter-content', $starter_content );
}
endif; // ayatherapycenter_setup
add_action( 'after_setup_theme', 'ayatherapycenter_setup' );
if ( ! function_exists( 'ayatherapycenter_load_scripts' ) ) :
/**
* the main function to load scripts in the AyaTherapyCenter theme
* if you add a new load of script, style, etc. you can use that function
* instead of adding a new wp_enqueue_scripts action for it.
*/
function ayatherapycenter_load_scripts() {
// load main stylesheet.
wp_enqueue_style( 'font-awesome',
get_template_directory_uri() . '/assets/css/font-awesome.css', array( ) );
wp_enqueue_style( 'animate-css',
get_template_directory_uri() . '/assets/css/animate.css', array( ) );
wp_enqueue_style( 'ayatherapycenter-style', get_stylesheet_uri(), array() );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
wp_enqueue_script( 'viewportchecker',
get_template_directory_uri() . '/assets/js/viewportchecker.js',
array( 'jquery' ) );
// Load Utilities JS Script
wp_enqueue_script( 'ayatherapycenter-utilities',
get_template_directory_uri() . '/assets/js/utilities.js',
array( 'jquery', 'viewportchecker' ) );
$data = array(
'loading_effect' => ( get_theme_mod('ayatherapycenter_animations_display', 1) == 1 ),
);
wp_localize_script('ayatherapycenter-utilities', 'ayatherapycenter_options', $data);
// Load Slider JS Scripts
wp_enqueue_script( 'jquery-easing-1-3',
get_template_directory_uri() . '/assets/js/jquery.easing.js',
array( 'jquery' ) );
wp_enqueue_script( 'jquery-eislideshow',
get_template_directory_uri() . '/assets/js/jquery.eislideshow.js',
array( 'jquery', 'jquery-easing-1-3' ) );
}
endif; // ayatherapycenter_load_scripts
add_action( 'wp_enqueue_scripts', 'ayatherapycenter_load_scripts' );
if ( ! function_exists( 'ayatherapycenter_widgets_init' ) ) :
/**
* widgets-init action handler. Used to register widgets and register widget areas
*/
function ayatherapycenter_widgets_init() {
// Register Sidebar Widget.
register_sidebar( array (
'name' => __( 'Sidebar Widget Area', 'ayatherapycenter'),
'id' => 'sidebar-widget-area',
'description' => __( 'The sidebar widget area', 'ayatherapycenter'),
'before_widget' => '',
'after_widget' => '',
'before_title' => '',
) );
// Register Footer Column #1
register_sidebar( array (
'name' => __( 'Footer Column #1', 'ayatherapycenter' ),
'id' => 'footer-column-1-widget-area',
'description' => __( 'The Footer Column #1 widget area', 'ayatherapycenter' ),
'before_widget' => '',
'after_widget' => '',
'before_title' => '',
) );
// Register Footer Column #2
register_sidebar( array (
'name' => __( 'Footer Column #2', 'ayatherapycenter' ),
'id' => 'footer-column-2-widget-area',
'description' => __( 'The Footer Column #2 widget area', 'ayatherapycenter' ),
'before_widget' => '',
'after_widget' => '',
'before_title' => '',
) );
// Register Footer Column #3
register_sidebar( array (
'name' => __( 'Footer Column #3', 'ayatherapycenter' ),
'id' => 'footer-column-3-widget-area',
'description' => __( 'The Footer Column #3 widget area', 'ayatherapycenter' ),
'before_widget' => '',
'after_widget' => '',
'before_title' => '',
) );
}
endif; // ayatherapycenter_widgets_init
add_action( 'widgets_init', 'ayatherapycenter_widgets_init' );
if ( ! function_exists( 'ayatherapycenter_show_copyright_text' ) ) :
/**
* Displays the copyright text.
*/
function ayatherapycenter_show_copyright_text() {
$footerText = esc_html( get_theme_mod('ayatherapycenter_footer_copyright', null) );
if ( !empty( $footerText ) ) {
echo esc_html( $footerText ) . ' | ';
}
}
endif; // ayatherapycenter_show_copyright_text
if ( ! function_exists( 'ayatherapycenter_display_slider' ) ) :
/**
* Displays Slider
*/
function ayatherapycenter_display_slider() {
?>
'btn',
'label' => __( 'Hover Effect', 'ayatherapycenter' ),
)
);
register_block_style(
'core/group',
array(
'name' => 'tgroup',
'label' => __( 'Margin Bottom Space', 'ayatherapycenter' ),
)
);
register_block_style(
'core/site-title',
array(
'name' => 'tsitetitle',
'label' => __( 'Bold', 'ayatherapycenter' ),
)
);
register_block_style(
'core/post-title',
array(
'name' => 'tposttitle',
'label' => __( 'Bold', 'ayatherapycenter' ),
)
);
register_block_style(
'core/social-link',
array(
'name' => 'tsociallinks',
'label' => __( 'Square', 'ayatherapycenter' ),
)
);
}
add_action( 'init', 'ayatherapycenter_register_block_styles' );