false,
'header-text' => false,
) );
add_theme_support( 'custom-logo', array(
'height' => 200,
'width' => 400,
'flex-height' => true,
) );
register_nav_menus( array(
'primary' => __( 'Primary Menu', 'blood-donation-campaign' ),
) );
add_theme_support( 'custom-background', array(
'default-color' => 'ffffff'
) );
add_theme_support( 'html5', array(
'search-form',
'comment-form',
'comment-list',
'gallery',
'caption',
) );
/*
* Enable support for Post Formats.
*/
add_theme_support( 'post-formats', array('image','video','gallery','audio',) );
add_editor_style( 'editor-style.css' );
// Theme Activation Notice
global $pagenow;
if (
is_admin()
&&
('themes.php' == $pagenow)
// &&
// isset( $_GET['activated'] )
) {
add_action('admin_notices', 'blood_donation_campaign_deprecated_hook_admin_notice');
}
}
endif; // blood_donation_campaign_setup
add_action( 'after_setup_theme', 'blood_donation_campaign_setup' );
function blood_donation_campaign_the_breadcrumb() {
echo '
';
if (!is_home()) {
echo '
';
bloginfo('name');
echo " >> ";
if (is_category() || is_single()) {
the_category(' >> ');
if (is_single()) {
echo ' >>
' . esc_html(get_the_title()) . '';
}
} elseif (is_page()) {
echo '
' . esc_html(get_the_title()) . '';
}
}
echo '
';
}
function blood_donation_campaign_widgets_init() {
register_sidebar( array(
'name' => __( 'Blog Sidebar', 'blood-donation-campaign' ),
'description' => __( 'Appears on blog page sidebar', 'blood-donation-campaign' ),
'id' => 'sidebar-1',
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => __( 'Page Sidebar', 'blood-donation-campaign' ),
'id' => 'sidebar-2',
'description' => __( 'Add widgets here to appear in your sidebar on pages.', 'blood-donation-campaign' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => __( 'Sidebar 3', 'blood-donation-campaign' ),
'id' => 'sidebar-3',
'description' => __( 'Add widgets here to appear in your sidebar on blog posts and archive pages.', 'blood-donation-campaign' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar(array(
'name' => __('Shop Sidebar', 'blood-donation-campaign'),
'description' => __('Sidebar for WooCommerce shop pages', 'blood-donation-campaign'),
'id' => 'woocommerce-sidebar',
'before_widget' => '',
'before_title' => '',
));
register_sidebar(array(
'name' => __('Single Product Sidebar', 'blood-donation-campaign'),
'description' => __('Sidebar for single product pages', 'blood-donation-campaign'),
'id' => 'woocommerce-single-sidebar',
'before_widget' => '',
'before_title' => '',
));
$blood_donation_campaign_widget_areas = get_theme_mod('blood_donation_campaign_footer_widget_areas', '4');
for ($blood_donation_campaign_i=1; $blood_donation_campaign_i<=$blood_donation_campaign_widget_areas; $blood_donation_campaign_i++) {
register_sidebar( array(
'name' => __( 'Footer Widget ', 'blood-donation-campaign' ) . $blood_donation_campaign_i,
'id' => 'footer-' . $blood_donation_campaign_i,
'description' => '',
'before_widget' => '',
'before_title' => '',
) );
}
}
add_action( 'widgets_init', 'blood_donation_campaign_widgets_init' );
// Change number of products per row to 3
add_filter('loop_shop_columns', 'blood_donation_campaign_loop_columns');
if (!function_exists('blood_donation_campaign_loop_columns')) {
function blood_donation_campaign_loop_columns() {
$blood_donation_campaign_colm = get_theme_mod('blood_donation_campaign_products_per_row', 4); // Default to 3 if not set
return $blood_donation_campaign_colm;
}
}
// Use the customizer setting to set the number of products per page
function blood_donation_campaign_products_per_page($blood_donation_campaign_cols) {
$blood_donation_campaign_cols = get_theme_mod('blood_donation_campaign_products_per_page', 8); // Default to 8 if not set
return $blood_donation_campaign_cols;
}
add_filter('loop_shop_per_page', 'blood_donation_campaign_products_per_page', 8);
function blood_donation_campaign_scripts() {
wp_enqueue_style( 'bootstrap-css', esc_url(get_template_directory_uri())."/css/bootstrap.css" );
wp_enqueue_style('blood-donation-campaign-style', get_stylesheet_uri(), array() );
wp_style_add_data('blood-donation-campaign-style', 'rtl', 'replace');
require get_parent_theme_file_path( '/inc/color-scheme/custom-color-control.php' );
wp_add_inline_style( 'blood-donation-campaign-style',$blood_donation_campaign_color_scheme_css );
wp_enqueue_style( 'owl.carousel-css', esc_url(get_template_directory_uri())."/css/owl.carousel.css" );
wp_enqueue_style( 'blood-donation-campaign-default', esc_url(get_template_directory_uri())."/css/default.css" );
wp_enqueue_style( 'animate-style', get_template_directory_uri().'/css/animate.css' );
wp_enqueue_script( 'wow-jquery', get_template_directory_uri() . '/js/wow.js', array('jquery'),'' ,true );
wp_enqueue_style( 'blood-donation-campaign-style', get_stylesheet_uri() );
wp_enqueue_script( 'owl.carousel-js', esc_url(get_template_directory_uri()). '/js/owl.carousel.js', array('jquery') );
wp_enqueue_script( 'bootstrap-js', esc_url(get_template_directory_uri()). '/js/bootstrap.js', array('jquery') );
wp_enqueue_script( 'blood-donation-campaign-theme', esc_url(get_template_directory_uri()) . '/js/theme.js' );
wp_enqueue_style( 'font-awesome-css', esc_url(get_template_directory_uri())."/css/fontawesome-all.css" );
wp_enqueue_style( 'blood-donation-campaign-block-style', esc_url( get_template_directory_uri() ).'/css/blocks.css' );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
// font-family
$blood_donation_campaign_body_font = esc_html(get_theme_mod('blood_donation_campaign_body_fonts'));
$blood_donation_campaign_heading_fonts = esc_html(get_theme_mod('blood_donation_campaign_headings_fonts'));
if ($blood_donation_campaign_body_font) {
wp_enqueue_style('blood-donation-campaign-body-fonts', 'https://fonts.googleapis.com/css?family=' . urlencode($blood_donation_campaign_body_font));
} else {
wp_enqueue_style('Roboto', 'https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900');
}
if ($blood_donation_campaign_heading_fonts) {
wp_enqueue_style('blood-donation-campaign-heading-fonts', 'https://fonts.googleapis.com/css?family=' . urlencode($blood_donation_campaign_heading_fonts));
} else {
wp_enqueue_style('Poppins', 'https://fonts.googleapis.com/css2?family=Poppins: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');
}
}
add_action( 'wp_enqueue_scripts', 'blood_donation_campaign_scripts' );
/**
* Implement the Custom Header feature.
*/
require get_template_directory() . '/inc/custom-header.php';
/**
* Custom template tags for this theme.
*/
require get_template_directory() . '/inc/template-tags.php';
/**
* Customizer additions.
*/
require get_template_directory() . '/inc/customizer.php';
/**
* Sanitization Callbacks.
*/
require get_template_directory() . '/inc/sanitization-callbacks.php';
/**
* Webfont-Loader.
*/
require get_template_directory() . '/inc/wptt-webfont-loader.php';
/**
* Customizer additions.
*/
require get_template_directory() . '/inc/upgrade-to-pro.php';
/**
* Google Fonts
*/
require get_template_directory() . '/inc/gfonts.php';
/**
* select .
*/
require get_template_directory() . '/inc/select/category-dropdown-custom-control.php';
/**
* Theme Info Page.
*/
require get_template_directory() . '/inc/addon.php';
/**
* Load TGM.
*/
require get_template_directory() . '/inc/tgm/tgm.php';
function blood_donation_campaign_setup_theme() {
if ( ! defined( 'BLOOD_DONATION_CAMPAIGN_PREMIUM_PAGE' ) ) {
define('BLOOD_DONATION_CAMPAIGN_PREMIUM_PAGE',__('https://www.theclassictemplates.com/products/blood-donation-wordpress-theme','blood-donation-campaign'));
}
if ( ! defined( 'BLOOD_DONATION_CAMPAIGN_PRO_NAME' ) ) {
define( 'BLOOD_DONATION_CAMPAIGN_PRO_NAME', __( 'About Blood Donation', 'blood-donation-campaign' ));
}
if ( ! defined( 'BLOOD_DONATION_CAMPAIGN_THEME_PAGE' ) ) {
define('BLOOD_DONATION_CAMPAIGN_THEME_PAGE',__('https://www.theclassictemplates.com/collections/best-wordpress-templates','blood-donation-campaign'));
}
if ( ! defined( 'BLOOD_DONATION_CAMPAIGN_SUPPORT' ) ) {
define('BLOOD_DONATION_CAMPAIGN_SUPPORT',__('https://wordpress.org/support/theme/blood-donation-campaign/','blood-donation-campaign'));
}
if ( ! defined( 'BLOOD_DONATION_CAMPAIGN_REVIEW' ) ) {
define('BLOOD_DONATION_CAMPAIGN_REVIEW',__('https://wordpress.org/support/theme/blood-donation-campaign/reviews/','blood-donation-campaign'));
}
if ( ! defined( 'BLOOD_DONATION_CAMPAIGN_PRO_DEMO' ) ) {
define('BLOOD_DONATION_CAMPAIGN_PRO_DEMO',__('https://live.theclassictemplates.com/blood-donation-campaign-pro/','blood-donation-campaign'));
}
if ( ! defined( 'BLOOD_DONATION_CAMPAIGN_THEME_DOCUMENTATION' ) ) {
define('BLOOD_DONATION_CAMPAIGN_THEME_DOCUMENTATION',__('https://live.theclassictemplates.com/demo/docs/blood-donation-campaign-free/','blood-donation-campaign'));
}
if ( ! defined( 'BLOOD_DONATION_CAMPAIGN_BUNDLE_PAGE' ) ) {
define('BLOOD_DONATION_CAMPAIGN_BUNDLE_PAGE',__('https://www.theclassictemplates.com/products/wordpress-theme-bundle','blood-donation-campaign'));
}
}
add_action('after_setup_theme', 'blood_donation_campaign_setup_theme');
// logo
if ( ! function_exists( 'blood_donation_campaign_the_custom_logo' ) ) :
/**
* Displays the optional custom logo.
*
* Does nothing if the custom logo is not available.
*
*/
function blood_donation_campaign_the_custom_logo() {
if ( function_exists( 'the_custom_logo' ) ) {
the_custom_logo();
}
}
endif;
/* Activation Notice */
function blood_donation_campaign_deprecated_hook_admin_notice() {
$blood_donation_campaign_theme = wp_get_theme();
$blood_donation_campaign_meta = get_option( 'blood_donation_campaign_admin_notice' );
if (!$blood_donation_campaign_meta) {
?>
get( 'Name' )), esc_html($blood_donation_campaign_theme->get( 'Version' ))); ?>