File "functions.php"

Full Path: /home/pumpbmko/public_html/wp-content/themes/pure-portfolio/functions.php
File size: 8.44 KB
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * Pure Portfolio functions and definitions
 *
 * @link https://developer.wordpress.org/themes/basics/theme-functions/
 *
 * @package Pure_Portfolio
 */

if ( ! defined( 'PURE_PORTFOLIO_VERSION' ) ) {
	// Replace the version number of the theme on each release.
	define( 'PURE_PORTFOLIO_VERSION', '1.0.4' );
}

if ( ! function_exists( 'pure_portfolio_setup' ) ) :
	/**
	 * Sets up theme defaults and registers support for various WordPress features.
	 *
	 * Note that this function is hooked into the after_setup_theme hook, which
	 * runs before the init hook. The init hook is too late for some features, such
	 * as indicating support for post thumbnails.
	 */
	function pure_portfolio_setup() {
		/*
		 * Make theme available for translation.
		 * Translations can be filed in the /languages/ directory.
		 * If you're building a theme based on Pure Portfolio, use a find and replace
		 * to change 'pure-portfolio' to the name of your theme in all the template files.
		 */
		load_theme_textdomain( 'pure-portfolio', get_template_directory() . '/languages' );

		// Add default posts and comments RSS feed links to head.
		add_theme_support( 'automatic-feed-links' );

		/*
		 * Let WordPress manage the document title.
		 * By adding theme support, we declare that this theme does not use a
		 * hard-coded <title> tag in the document head, and expect WordPress to
		 * provide it for us.
		 */
		add_theme_support( 'title-tag' );

		add_theme_support( 'wp-block-styles' );

		add_theme_support( 'register_block_style' );

		add_theme_support( 'register_block_pattern' );

		/*
		 * Enable support for Post Thumbnails on posts and pages.
		 *
		 * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/
		 */
		add_theme_support( 'post-thumbnails' );

		// This theme uses wp_nav_menu() in one location.
		register_nav_menus(
			array(
				'primary' => esc_html__( 'Primary', 'pure-portfolio' ),
			)
		);

		/*
		 * Switch default core markup for search form, comment form, and comments
		 * to output valid HTML5.
		 */
		add_theme_support(
			'html5',
			array(
				'search-form',
				'comment-form',
				'comment-list',
				'gallery',
				'caption',
				'style',
				'script',
				'woocommerce',
			)
		);

		// Set up the WordPress core custom background feature.
		add_theme_support(
			'custom-background',
			apply_filters(
				'pure_portfolio_custom_background_args',
				array(
					'default-color' => 'ffffff',
					'default-image' => '',
				)
			)
		);

		// Add theme support for selective refresh for widgets.
		add_theme_support( 'customize-selective-refresh-widgets' );

		/**
		 * Add support for core custom logo.
		 *
		 * @link https://codex.wordpress.org/Theme_Logo
		 */
		add_theme_support(
			'custom-logo',
			array(
				'height'      => 250,
				'width'       => 250,
				'flex-width'  => true,
				'flex-height' => true,
			)
		);

		/**
		 * Add theme support for gutenberg block.
		 */
		add_theme_support( 'align-wide' );
		add_theme_support( 'responsive-embeds' );
	}
endif;
add_action( 'after_setup_theme', 'pure_portfolio_setup' );

/**
 * Set the content width in pixels, based on the theme's design and stylesheet.
 *
 * Priority 0 to make it available to lower priority callbacks.
 *
 * @global int $content_width
 */
function pure_portfolio_content_width() {
	$GLOBALS['content_width'] = apply_filters( 'pure_portfolio_content_width', 640 );
}
add_action( 'after_setup_theme', 'pure_portfolio_content_width', 0 );

/**
 * Register widget area.
 *
 * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
 */
function pure_portfolio_widgets_init() {
	register_sidebar(
		array(
			'name'          => esc_html__( 'Sidebar', 'pure-portfolio' ),
			'id'            => 'sidebar-1',
			'description'   => esc_html__( 'Add widgets here.', 'pure-portfolio' ),
			'before_widget' => '<section id="%1$s" class="widget %2$s">',
			'after_widget'  => '</section>',
			'before_title'  => '<h2 class="widget-title">',
			'after_title'   => '</h2>',
		)
	);

	// Regsiter 4 footer widgets.
	register_sidebars(
		4,
		array(
			/* translators: %d: Footer Widget count. */
			'name'          => esc_html__( 'Footer Widget %d', 'pure-portfolio' ),
			'id'            => 'footer-widget',
			'description'   => esc_html__( 'Add widgets here.', 'pure-portfolio' ),
			'before_widget' => '<section id="%1$s" class="widget %2$s">',
			'after_widget'  => '</section>',
			'before_title'  => '<h6 class="widget-title">',
			'after_title'   => '</h6>',
		)
	);
}
add_action( 'widgets_init', 'pure_portfolio_widgets_init' );

/**
 * Enqueue scripts and styles.
 */
function pure_portfolio_scripts() {
	// Append .min if SCRIPT_DEBUG is false.
	$min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';

	// Slick style.
	wp_enqueue_style( 'pure-portfolio-slick-style', get_template_directory_uri() . '/assets/css/slick' . $min . '.css', array(), '1.8.1' );

	// Animate style.
	wp_enqueue_style( 'pure-portfolio-animate-style', get_template_directory_uri() . '/assets/css/animate' . $min . '.css', array(), '' );

	// Fontawesome style.
	wp_enqueue_style( 'pure-portfolio-fontawesome-style', get_template_directory_uri() . '/assets/css/fontawesome' . $min . '.css', array(), '5.15.4' );

	// Google fonts.
	wp_enqueue_style( 'pure-portfolio-google-fonts', wptt_get_webfont_url( pure_portfolio_get_fonts_url() ), array(), null );

	// Main style.
	wp_enqueue_style( 'pure-portfolio-style', get_template_directory_uri() . '/style.css', array(), PURE_PORTFOLIO_VERSION );

	// Navigation script.
	wp_enqueue_script( 'pure-portfolio-navigation-script', get_template_directory_uri() . '/assets/js/navigation.js', array(), PURE_PORTFOLIO_VERSION, true );

	// Slick script.
	wp_enqueue_script( 'pure-portfolio-slick-script', get_template_directory_uri() . '/assets/js/slick' . $min . '.js', array( 'jquery' ), '1.8.1', true );

	// Magic Mouse CDN script.
	wp_enqueue_script( 'pure-portfolio-magic-mouse-cdn-script', get_template_directory_uri() . '/assets/js/magic_mouse.cdn' . $min . '.js', array( 'jquery' ), '1.8.1', true );

	// Circle Progress script.
	wp_enqueue_script( 'pure-portfolio-circle-progress-script', get_template_directory_uri() . '/assets/js/circle-progress' . $min . '.js', array( 'jquery' ), '1.2.2', true );

	// Typed script.
	wp_enqueue_script( 'pure-portfolio-typed-script', get_template_directory_uri() . '/assets/js/typed' . $min . '.js', array( 'jquery' ), '1.8.1', true );

	// Wow script.
	wp_enqueue_script( 'pure-portfolio-wow-script', get_template_directory_uri() . '/assets/js/wow' . $min . '.js', array( 'jquery' ), '1.3.0', true );

	// Custom script.
	wp_enqueue_script( 'pure-portfolio-custom-script', get_template_directory_uri() . '/assets/js/custom' . $min . '.js', array( 'jquery' ), PURE_PORTFOLIO_VERSION, true );

	if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
		wp_enqueue_script( 'comment-reply' );
	}
}
add_action( 'wp_enqueue_scripts', 'pure_portfolio_scripts' );

/**
 * Include wptt webfont loader.
 */
require_once get_theme_file_path( 'inc/wptt-webfont-loader.php' );

/**
 * 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';

/**
 * Functions which enhance the theme by hooking into WordPress.
 */
require get_template_directory() . '/inc/template-functions.php';

/**
 * Customizer additions.
 */
require get_template_directory() . '/inc/customizer.php';

/**
 * Google Fonts
 */
require get_template_directory() . '/inc/google-fonts.php';

/**
 * Dynamic CSS
 */
require get_template_directory() . '/inc/dynamic-css.php';

/**
 * Breadcrumb
 */
require get_template_directory() . '/inc/class-breadcrumb-trail.php';

/**
 * Recommended Plugins
 */
require get_template_directory() . '/inc/tgmpa/recommended-plugins.php';

/**
 * Load Social Widget
 */
require get_template_directory() . '/inc/widget-social-icons.php';

/**
 * One Click Demo Import after import setup.
 */
if ( class_exists( 'OCDI_Plugin' ) ) {
	require get_template_directory() . '/inc/ocdi.php';
}

/**
 * Load Jetpack compatibility file.
 */
if ( defined( 'JETPACK__VERSION' ) ) {
	require get_template_directory() . '/inc/jetpack.php';
}