esc_html__( 'Main menu', 'nonprofit-organization' ), )); add_theme_support( 'responsive-embeds' ); add_theme_support( 'woocommerce' ); add_theme_support( 'align-wide' ); add_theme_support('title-tag'); add_theme_support('automatic-feed-links'); add_theme_support( 'wp-block-styles' ); add_theme_support('post-thumbnails'); add_theme_support( 'custom-background', array( 'default-color' => 'f3f3f3' )); add_theme_support( 'custom-logo', array( 'height' => 70, 'width' => 70, ) ); add_theme_support( 'custom-header', array( 'header-text' => false, 'width' => 1920, 'height' => 100 )); add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', ) ); add_theme_support( 'post-formats', array('image','video','gallery','audio',) ); add_editor_style( array( '/css/editor-style.css' ) ); } add_action( 'after_setup_theme', 'nonprofit_organization_after_setup_theme', 999 ); } require get_template_directory() .'/core/includes/main.php'; require get_template_directory() .'/core/includes/tgm.php'; require get_template_directory() . '/core/includes/customizer.php'; load_template( trailingslashit( get_template_directory() ) . '/core/includes/class-upgrade-pro.php' ); require get_template_directory() .'/core/includes/meta-data.php'; /*-----------------------------------------------------------------------------------*/ /* Enqueue theme logo style */ /*-----------------------------------------------------------------------------------*/ function nonprofit_organization_logo_resizer() { $nonprofit_organization_theme_logo_size_css = ''; $nonprofit_organization_logo_resizer = get_theme_mod('nonprofit_organization_logo_resizer'); $nonprofit_organization_theme_logo_size_css = ' .custom-logo{ height: '.esc_attr($nonprofit_organization_logo_resizer).'px !important; width: '.esc_attr($nonprofit_organization_logo_resizer).'px !important; } '; wp_add_inline_style( 'nonprofit-organization-style',$nonprofit_organization_theme_logo_size_css ); } add_action( 'wp_enqueue_scripts', 'nonprofit_organization_logo_resizer' ); /*-----------------------------------------------------------------------------------*/ /* Enqueue Global color style */ /*-----------------------------------------------------------------------------------*/ function nonprofit_organization_global_color() { $theme_color_css = ''; $nonprofit_organization_copyright_bg = get_theme_mod('nonprofit_organization_copyright_bg'); $theme_color_css = ' .copyright { background: '.esc_attr($nonprofit_organization_copyright_bg).'; } '; wp_add_inline_style( 'nonprofit-organization-style',$theme_color_css ); wp_add_inline_style( 'nonprofit-organization-woocommerce-css',$theme_color_css ); } add_action( 'wp_enqueue_scripts', 'nonprofit_organization_global_color' ); /*-----------------------------------------------------------------------------------*/ /* Get post comments */ /*-----------------------------------------------------------------------------------*/ if (!function_exists('nonprofit_organization_comment')) : /** * Template for comments and pingbacks. * * Used as a callback by wp_list_comments() for displaying the comments. */ function nonprofit_organization_comment($comment, $args, $depth){ if ('pingback' == $comment->comment_type || 'trackback' == $comment->comment_type) : ?>
  • >
    ', ''); ?>
  • >
    %s', get_comment_author_link() ); ?>
    ', '' ); ?>
    comment_approved) : ?>

    'div-comment', 'depth' => $depth, 'max_depth' => $args['max_depth'], 'before' => '
    ', 'after' => '
    ' ) ) ); ?>
    esc_html__('Sidebar','nonprofit-organization'), 'id' => 'nonprofit-organization-sidebar', 'description' => esc_html__('This sidebar will be shown next to the content.', 'nonprofit-organization'), 'before_widget' => '', 'before_title' => '

    ', 'after_title' => '

    ' )); register_sidebar(array( 'name' => esc_html__('Footer sidebar','nonprofit-organization'), 'id' => 'nonprofit-organization-footer-sidebar', 'description' => esc_html__('This sidebar will be shown next at the bottom of your content.', 'nonprofit-organization'), 'before_widget' => '
    ', 'after_widget' => '
    ', 'before_title' => '

    ', 'after_title' => '

    ' )); } add_action( 'widgets_init', 'nonprofit_organization_widgets_init' ); } function nonprofit_organization_get_categories_select() { $nonprofit_organization_teh_cats = get_categories(); $results = array(); $nonprofit_organization_count = count($nonprofit_organization_teh_cats); for ($i=0; $i < $nonprofit_organization_count; $i++) { if (isset($nonprofit_organization_teh_cats[$i])) $results[$nonprofit_organization_teh_cats[$i]->slug] = $nonprofit_organization_teh_cats[$i]->name; else $nonprofit_organization_count++; } return $results; } function nonprofit_organization_sanitize_phone_number( $phone ) { return preg_replace( '/[^\d+]/', '', $phone ); } // Change number or products per row to 3 add_filter('loop_shop_columns', 'nonprofit_organization_loop_columns'); if (!function_exists('nonprofit_organization_loop_columns')) { function nonprofit_organization_loop_columns() { $columns = get_theme_mod( 'nonprofit_organization_per_columns', 3 ); return $columns; } } //Change number of products that are displayed per page (shop page) add_filter( 'loop_shop_per_page', 'nonprofit_organization_per_page', 20 ); function nonprofit_organization_per_page( $cols ) { $cols = get_theme_mod( 'nonprofit_organization_product_per_page', 9 ); return $cols; } add_action('after_switch_theme', 'nonprofit_organization_setup_options'); function nonprofit_organization_setup_options () { update_option('dismissed-get_started', FALSE ); } ?>