HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: /home/mmickelson/martyknows.com/wp-content/themes/sundance/functions.php
<?php
/**
 * Sundance functions and definitions
 *
 * @package Sundance
 * @since Sundance 1.0
 */

/**
 * Set up the content width value based on the theme's design and stylesheet.
 */
if ( ! isset( $content_width ) )
	$content_width = 652; /* Default content width */

/**
 * Adjust the content width based on the presence of active widgets and page templates.
 *
 * @since Sundance 1.0
 */
function sundance_set_content_width() {
	$options = sundance_get_theme_options();
	global $content_width;
	if ( is_page_template( 'full-width-page.php' )
		|| is_attachment()
		|| ( 'off' == $options['show_rss_link']
			&& ''  == $options['twitter_url']
			&& ''  == $options['facebook_url']
			&& ''  == $options['google_url']
			&& ''  == $options['flickr_url']
			&& ! is_active_sidebar( 'sidebar-1' ) )
		)
		$content_width = 874;
}
add_action( 'template_redirect', 'sundance_set_content_width' );

if ( ! function_exists( 'sundance_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 post thumbnails.
 *
 * @since Sundance 1.0
 */
function sundance_setup() {

	/**
	 * Make theme available for translation
	 * Translations can be filed in the /languages/ directory
	 * If you're building a theme based on Sundance, use a find and replace
	 * to change 'sundance' to the name of your theme in all the template files
	 */
	load_theme_textdomain( 'sundance', get_template_directory() . '/languages' );

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

	/**
	 * This theme uses wp_nav_menu() in one location.
	 */
	register_nav_menus( array(
		'primary' => __( 'Primary Menu', 'sundance' ),
	) );

	/**
	 * Add support for the Aside and Gallery Post Formats
	 */
	add_theme_support( 'post-formats', array( 'video' ) );

	// Add support for custom backgrounds.
	add_theme_support( 'custom-background', apply_filters( 'sundance_custom_background_args', array(
		'default-color' => 'edeaf1',
		'default-image' => get_template_directory_uri() . '/images/bg.jpg'
	) ) );
}
endif; // sundance_setup
add_action( 'after_setup_theme', 'sundance_setup' );

/**
 * Register widgetized area and update sidebar with default widgets
 *
 * @since Sundance 1.0
 */
function sundance_widgets_init() {
	register_sidebar( array(
		'name' => __( 'Sidebar', 'sundance' ),
		'id' => 'sidebar-1',
		'before_widget' => '<aside id="%1$s" class="widget %2$s">',
		'after_widget' => '</aside>',
		'before_title' => '<h1 class="widget-title">',
		'after_title' => '</h1>',
	) );
}
add_action( 'widgets_init', 'sundance_widgets_init' );

/**
 * Enqueue scripts
 */
function sundance_scripts() {

	wp_enqueue_style( 'style', get_stylesheet_uri() );

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

	if ( is_singular() && wp_attachment_is_image( get_post()->ID ) )
		wp_enqueue_script( 'keyboard-image-navigation', get_template_directory_uri() . '/js/keyboard-image-navigation.js', array( 'jquery' ), '20120202' );

	wp_enqueue_script( 'sundance-small-menu', get_template_directory_uri() . '/js/small-menu.js', array( 'jquery' ), '20120305', true );

	wp_enqueue_script( 'sundance-flex-slider', get_template_directory_uri() . '/js/jquery.flexslider.js', array( 'jquery' ), '20120903', true );

	wp_enqueue_script( 'sundance-theme', get_template_directory_uri() . '/js/theme.js', array( 'jquery', 'sundance-flex-slider' ), '20120213', true );

}
add_action( 'wp_enqueue_scripts', 'sundance_scripts' );

/**
 * Register Google Fonts style.
 */
function sundance_register_fonts() {
	$protocol = is_ssl() ? 'https' : 'http';
	wp_register_style(
		'sundance-droid-serif',
		"$protocol://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic",
		array(),
		'20120821'
	);
}
add_action( 'init', 'sundance_register_fonts' );

/**
 * Enqueue Google Fonts style.
 */
function sundance_fonts() {
	wp_enqueue_style( 'sundance-droid-serif');
}
add_action( 'wp_enqueue_scripts', 'sundance_fonts' );

/**
 * Enqueue Google fonts style to admin screen for custom header display.
 */
function sundance_admin_fonts( $hook_suffix ) {
	if ( 'appearance_page_custom-header' != $hook_suffix )
		return;

	wp_enqueue_style( 'sundance-droid-serif');
}
add_action( 'admin_enqueue_scripts', 'sundance_admin_fonts' );

/**
 * Filter the home page posts, and remove any featured post ID's from it. Hooked
 * onto the 'pre_get_posts' action, this changes the parameters of the query
 * before it gets any posts.
 *
 * @global array $featured_post_id
 * @param WP_Query $query
 * @return WP_Query Possibly modified WP_query
 */
function sundance_home_posts( $query = false ) {

	// Bail if not home, not a query, not main query, or no featured posts
	if ( ! is_home() || ! is_a( $query, 'WP_Query' ) || ! $query->is_main_query() || ! sundance_featuring_posts() )
		return $query;

	// Exclude featured posts from the main query
	$query->query_vars['post__not_in'] = sundance_featuring_posts();

	return $query;
}
add_action( 'pre_get_posts', 'sundance_home_posts' );

/**
 * Test to see if any posts meet our conditions for featuring posts.
 * Current conditions are:
 *
 * - sticky posts
 * - with featured thumbnails
 *
 * We store the results of the loop in a transient, to prevent running this
 * extra query on every page load. The results are an array of post ID's that
 * match the result above. This gives us a quick way to loop through featured
 * posts again later without needing to query additional times later.
 */
function sundance_featuring_posts() {
	if ( false === ( $featured_post_ids = get_transient( 'featured_post_ids' ) ) ) {

		// Proceed only if sticky posts exist.
		$sticky = get_option( 'sticky_posts' );

		// Proceed only if sticky posts exist.
		if ( is_array( $sticky ) && ! empty( $sticky ) ) {

			// The Featured Posts query - The need to be sticky post and video post format
			$featured_args = array(
				'post__in'       => $sticky,
				'post_status'    => 'publish',
				'tax_query'      => array( array(
					'taxonomy'   => 'post_format',
					'field'      => 'slug',
					'terms'      => array( 'post-format-video' )
				) ),
				'posts_per_page' => 10,
				'no_found_rows'  => true
			);

			$featured = new WP_Query( $featured_args );

			// Proceed only if published posts with thumbnails exist
			if ( $featured->have_posts() ) {
				while ( $featured->have_posts() ) {
					$featured->the_post();
					$featured_post_ids[] = $featured->post->ID;
				}

				set_transient( 'featured_post_ids', $featured_post_ids );
			}

			wp_reset_postdata();

		}
	}

	return $featured_post_ids;
}
/**
 * Flush out the transients used in sundance_featured_posts()
 */
function sundance_featured_post_checker_flusher() {
	delete_transient( 'featured_post_ids' );
}
add_action( 'update_option_sticky_posts', 'sundance_featured_post_checker_flusher' );
add_action( 'save_post', 'sundance_featured_post_checker_flusher' );

/**
 * Implement the Custom Header feature.
 */
require get_template_directory() . '/inc/custom-header.php';

/**
 * Load Jetpack compatibility file.
 */
if ( file_exists( get_template_directory() . '/inc/jetpack.php' ) )
	require get_template_directory() . '/inc/jetpack.php';

/**
 * Custom template tags for this theme.
 */
require get_template_directory() . '/inc/template-tags.php';

/**
 * Custom functions that act independently of the theme templates.
 */
require get_template_directory() . '/inc/tweaks.php';

/**
 * Custom Theme Options.
 */
require get_template_directory() . '/inc/theme-options/theme-options.php';