__( 'Primary Menu', 'boxing-martial-arts' ),
) );
// Add theme support for Custom Logo.
add_theme_support( 'custom-logo', array(
'width' => 250,
'height' => 250,
'flex-width' => true,
'flex-height' => true,
) );
// Add theme support for selective refresh for widgets.
add_theme_support( 'customize-selective-refresh-widgets' );
add_theme_support( 'custom-background', array(
'default-color' => 'ffffff'
) );
/*
* Enable support for Post Formats.
*
* See: https://codex.wordpress.org/Post_Formats
*/
add_theme_support( 'post-formats', array('image','video','gallery','audio',) );
add_theme_support( 'html5', array('comment-form','comment-list','gallery','caption',) );
/*
* 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', boxing_martial_arts_fonts_url() ) );
}
add_action( 'after_setup_theme', 'boxing_martial_arts_setup' );
/**
* Register custom fonts.
*/
function boxing_martial_arts_fonts_url(){
$boxing_martial_arts_font_url = '';
$boxing_martial_arts_font_family = array();
$boxing_martial_arts_font_family[] = 'Fira Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900';
$boxing_martial_arts_font_family[] = 'Fira Sans Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900';
$boxing_martial_arts_query_args = array(
'family' => rawurlencode(implode('|',$boxing_martial_arts_font_family)),
);
$boxing_martial_arts_font_url = add_query_arg($boxing_martial_arts_query_args,'//fonts.googleapis.com/css');
return $boxing_martial_arts_font_url;
$contents = wptt_get_webboxing_martial_arts_font_url( esc_url_raw( $fonts_url ) );
}
/**
* Register widget area.
*/
function boxing_martial_arts_widgets_init() {
register_sidebar( array(
'name' => __( 'Blog Sidebar', 'boxing-martial-arts' ),
'id' => 'sidebar-1',
'description' => __( 'Add widgets here to appear in your sidebar on blog posts and archive pages.', 'boxing-martial-arts' ),
'before_widget' => '',
'before_title' => '
',
) );
register_sidebar( array(
'name' => __( 'Page Sidebar', 'boxing-martial-arts' ),
'id' => 'sidebar-2',
'description' => __( 'Add widgets here to appear in your sidebar on pages.', 'boxing-martial-arts' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => __( 'Sidebar 3', 'boxing-martial-arts' ),
'id' => 'sidebar-3',
'description' => __( 'Add widgets here to appear in your sidebar on blog posts and archive pages.', 'boxing-martial-arts' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => __( 'Footer 1', 'boxing-martial-arts' ),
'id' => 'footer-1',
'description' => __( 'Add widgets here to appear in your footer.', 'boxing-martial-arts' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => __( 'Footer 2', 'boxing-martial-arts' ),
'id' => 'footer-2',
'description' => __( 'Add widgets here to appear in your footer.', 'boxing-martial-arts' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => __( 'Footer 3', 'boxing-martial-arts' ),
'id' => 'footer-3',
'description' => __( 'Add widgets here to appear in your footer.', 'boxing-martial-arts' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => __( 'Footer 4', 'boxing-martial-arts' ),
'id' => 'footer-4',
'description' => __( 'Add widgets here to appear in your footer.', 'boxing-martial-arts' ),
'before_widget' => '',
'before_title' => '',
) );
}
add_action( 'widgets_init', 'boxing_martial_arts_widgets_init' );
// Category count
function display_post_category_count() {
$category = get_the_category();
$boxing_martial_arts_category_count = ($category) ? count($category) : 0;
$boxing_martial_arts_category_text = ($boxing_martial_arts_category_count === 1) ? 'category' : 'categories'; // Check for pluralization
echo $boxing_martial_arts_category_count . ' ' . $boxing_martial_arts_category_text;
}
//post tag
function custom_tags_filter($boxing_martial_arts_tag_list) {
// Replace the comma (,) with an empty string
$boxing_martial_arts_tag_list = str_replace(', ', '', $boxing_martial_arts_tag_list);
return $boxing_martial_arts_tag_list;
}
add_filter('the_tags', 'custom_tags_filter');
function custom_output_tags() {
$tags = get_the_tags();
if ($tags) {
$boxing_martial_arts_tags_output = 'Tags: ';
$boxing_martial_arts_first_tag = reset($tags);
foreach ($tags as $tag) {
$boxing_martial_arts_tags_output .= '
' . esc_html($tag->name) . '';
if ($tag !== $boxing_martial_arts_first_tag) {
$boxing_martial_arts_tags_output .= ' ';
}
}
$boxing_martial_arts_tags_output .= '
';
echo $boxing_martial_arts_tags_output;
}
}
/**
* Enqueue scripts and styles.
*/
function boxing_martial_arts_scripts() {
// Add custom fonts, used in the main stylesheet.
wp_enqueue_style( 'boxing-martial-arts-fonts', boxing_martial_arts_fonts_url(), array(), null );
// Bootstrap
wp_enqueue_style( 'bootstrap-css', get_theme_file_uri( '/assets/css/bootstrap.css' ) );
// Theme stylesheet.
wp_enqueue_style( 'boxing-martial-arts-style', get_stylesheet_uri() );
require get_parent_theme_file_path( '/tp-theme-color.php' );
wp_add_inline_style( 'boxing-martial-arts-style',$boxing_martial_arts_tp_theme_css );
require get_parent_theme_file_path( '/tp-body-width-layout.php' );
wp_add_inline_style( 'boxing-martial-arts-style',$boxing_martial_arts_tp_theme_css );
wp_style_add_data('boxing-martial-arts-style', 'rtl', 'replace');
// Theme block stylesheet.
wp_enqueue_style( 'boxing-martial-arts-block-style', get_theme_file_uri( '/assets/css/blocks.css' ), array( 'boxing-martial-arts-style' ), '1.0' );
// Fontawesome
wp_enqueue_style( 'fontawesome-css', get_theme_file_uri( '/assets/css/fontawesome-all.css' ) );
wp_enqueue_script( 'bootstrap-js', get_theme_file_uri( '/assets/js/bootstrap.js' ), array( 'jquery' ), true );
wp_enqueue_script( 'boxing-martial-arts-custom-scripts', esc_url( get_template_directory_uri() ) . '/assets/js/boxing-martial-arts-custom.js', array('jquery'), true);
wp_enqueue_script( 'boxing-martial-arts-focus-nav', esc_url( get_template_directory_uri() ) . '/assets/js/focus-nav.js', array('jquery'), true);
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'boxing_martial_arts_scripts' );
//Admin Enqueue for Admin
function boxing_martial_arts_admin_enqueue_scripts(){
wp_enqueue_style('boxing-martial-arts-admin-style', get_template_directory_uri() . '/assets/css/admin.css');
wp_enqueue_script( 'boxing-martial-arts-custom-scripts', get_template_directory_uri(). '/assets/js/boxing-martial-arts-custom.js', array('jquery'), true);
wp_enqueue_script( 'boxing-martial-arts-admin-script', get_template_directory_uri() . '/assets/js/boxing-martial-arts-admin.js', array( 'jquery' ), '', true );
wp_localize_script( 'boxing-martial-arts-admin-script', 'boxing_martial_arts_ajax_object',
array( 'ajax_url' => admin_url( 'admin-ajax.php' ) )
);
}
add_action( 'admin_enqueue_scripts', 'boxing_martial_arts_admin_enqueue_scripts' );
/*radio button sanitization*/
function boxing_martial_arts_sanitize_choices( $input, $setting ) {
global $wp_customize;
$control = $wp_customize->get_control( $setting->id );
if ( array_key_exists( $input, $control->choices ) ) {
return $input;
} else {
return $setting->default;
}
}
// Sanitize Sortable control.
function boxing_martial_arts_sanitize_sortable( $val, $setting ) {
if ( is_string( $val ) || is_numeric( $val ) ) {
return array(
esc_attr( $val ),
);
}
$sanitized_value = array();
foreach ( $val as $item ) {
if ( isset( $setting->manager->get_control( $setting->id )->choices[ $item ] ) ) {
$sanitized_value[] = esc_attr( $item );
}
}
return $sanitized_value;
}
function boxing_martial_arts_sanitize_dropdown_pages( $page_id, $setting ) {
// Ensure $input is an absolute integer.
$page_id = absint( $page_id );
// If $page_id is an ID of a published page, return it; otherwise, return the default.
return ( 'publish' == get_post_status( $page_id ) ? $page_id : $setting->default );
}
// Change number or products per row to 3
add_filter('loop_shop_columns', 'boxing_martial_arts_loop_columns');
if (!function_exists('boxing_martial_arts_loop_columns')) {
function boxing_martial_arts_loop_columns() {
$columns = get_theme_mod( 'boxing_martial_arts_per_columns', 3 );
return $columns;
}
}
//Change number of products that are displayed per page (shop page)
add_filter( 'loop_shop_per_page', 'boxing_martial_arts_per_page', 20 );
function boxing_martial_arts_per_page( $cols ) {
$cols = get_theme_mod( 'boxing_martial_arts_product_per_page', 9 );
return $cols;
}
function boxing_martial_arts_sanitize_number_range( $number, $setting ) {
// Ensure input is an absolute integer.
$number = absint( $number );
// Get the input attributes associated with the setting.
$atts = $setting->manager->get_control( $setting->id )->input_attrs;
// Get minimum number in the range.
$min = ( isset( $atts['min'] ) ? $atts['min'] : $number );
// Get maximum number in the range.
$max = ( isset( $atts['max'] ) ? $atts['max'] : $number );
// Get step.
$step = ( isset( $atts['step'] ) ? $atts['step'] : 1 );
// If the number is within the valid range, return it; otherwise, return the default
return ( $min <= $number && $number <= $max && is_int( $number / $step ) ? $number : $setting->default );
}
function boxing_martial_arts_sanitize_checkbox( $input ) {
// Boolean check
return ( ( isset( $input ) && true == $input ) ? true : false );
}
function boxing_martial_arts_sanitize_number_absint( $number, $setting ) {
// Ensure $number is an absolute integer (whole number, zero or greater).
$number = absint( $number );
// If the input is an absolute integer, return it; otherwise, return the default
return ( $number ? $number : $setting->default );
}
/**
* Use front-page.php when Front page displays is set to a static page.
*/
function boxing_martial_arts_front_page_template( $template ) {
return is_home() ? '' : $template;
}
add_filter( 'frontpage_template','boxing_martial_arts_front_page_template' );
add_action( 'wp_ajax_boxing_martial_arts_dismissed_notice_handler', 'boxing_martial_arts_ajax_notice_handler' );
define('BOXING_MARTIAL_ARTS_CREDIT',__('https://themespride.com/themes/free-martial-arts-wordpress-theme/','boxing-martial-arts') );
if ( ! function_exists( 'boxing_martial_arts_credit' ) ) {
function boxing_martial_arts_credit(){
echo "".esc_html__(get_theme_mod('boxing_martial_arts_footer_text',__('Boxing Martial Arts WordPress Theme','boxing-martial-arts')))."";
}
}
function boxing_martial_arts_ajax_notice_handler() {
if ( isset( $_POST['type'] ) ) {
$type = sanitize_text_field( wp_unslash( $_POST['type'] ) );
update_option( 'dismissed-' . $type, TRUE );
}
}
function boxing_martial_arts_activation_notice() {
if ( ! get_option('dismissed-get_started', FALSE ) ) { ?>
'. wp_get_theme()->get('Name'). '' );
?>
',
'
',
''
);
?>
"; ?>
img.custom-logo{
width: px;
max-width: 100%;
}
";
}
add_action( 'wp_head', 'boxing_martial_arts_logo_width' );
/**
* Implement the Custom Header feature.
*/
require get_parent_theme_file_path( '/inc/custom-header.php' );
/**
* Custom template tags for this theme.
*/
require get_parent_theme_file_path( '/inc/template-tags.php' );
/**
* Additional features to allow styling of the templates.
*/
require get_parent_theme_file_path( '/inc/template-functions.php' );
/**
* About Theme Page
*/
require get_parent_theme_file_path( '/inc/about-theme.php' );
/**
* Customizer additions.
*/
require get_parent_theme_file_path( '/inc/customizer.php' );
/**
* Load Theme Web File
*/
require get_parent_theme_file_path('/inc/wptt-webfont-loader.php' );
/**
* Load Toggle file
*/
require get_parent_theme_file_path( '/inc/controls/customize-control-toggle.php' );
/**
* load sortable file
*/
require get_parent_theme_file_path( '/inc/controls/sortable-control.php' );
// offer Meta
function boxing_martial_arts_bn_custom_meta_offer() {
add_meta_box( 'bn_meta', __( 'Matches Location Meta Feilds', 'boxing-martial-arts' ), 'boxing_martial_arts_meta_callback_our_funds', 'post', 'normal', 'high' );
}
/* Hook things in for admin*/
if (is_admin()){
add_action('admin_menu', 'boxing_martial_arts_bn_custom_meta_offer');
}
function boxing_martial_arts_meta_callback_our_funds( $post ) {
wp_nonce_field( basename( __FILE__ ), 'boxing_martial_arts_our_matches_meta_nonce' );
$boxing_martial_arts_bn_stored_meta = get_post_meta( $post->ID );
$boxing_martial_arts_location = get_post_meta( $post->ID, 'boxing_martial_arts_location', true );
?>