/';
preg_match( $pattern, $post->post_content, $the_images );
// Check if an image was found.
if ( ! empty( $the_images[0] ) ) {
$attachment_id = absint( $the_images[0] );
}
}
// Still nothing was found, check for attached images.
if ( ! $attachment_id ) {
$the_images = get_attached_media( 'image', $post->ID );
if ( ! empty( $the_images ) ) {
$image = reset( $the_images );
$attachment_id = $image->ID;
}
}
// Check if an image was found.
if ( $attachment_id ) {
if ( $html ) {
$atts = array(
'alt' => get_the_title( $post->ID ),
);
if ( sinatra_get_schema_markup( 'image' ) ) {
$atts['itemprop'] = 'image';
}
return wp_get_attachment_image( $attachment_id, 'full', false, $atts );
} else {
return wp_get_attachment_url( $attachment_id );
}
}
return false;
}
endif;
if ( ! function_exists( 'sinatra_get_post_thumbnail' ) ) :
/**
* Get post thumbnail markup.
*
* @since 1.0.0
* @param int|WP_Post $post Optional. Post ID or WP_Post object. Default is global `$post`.
* @param string|array $size Optional. Image size to use. Accepts any valid image size, or
* an array of width and height values in pixels (in that order).
* Default 'post-thumbnail'.
* @param boolean $caption Optional. Display image caption.
* @return string The post thumbnail image tag.
*/
function sinatra_get_post_thumbnail( $post = null, $size = 'post-thumbnail', $caption = false ) {
$attachment_id = get_post_thumbnail_id( $post );
$attachment_alt = trim( strip_tags( get_post_meta( $attachment_id, '_wp_attachment_image_alt', true ) ) ); // phpcs:ignore
$attachment_alt = empty( $attachment_alt ) ? get_the_title( $post ) : $attachment_alt;
$atts = array(
'alt' => $attachment_alt,
);
if ( sinatra_get_schema_markup( 'image' ) ) {
$atts['itemprop'] = 'image';
}
$size = apply_filters( 'sinatra_post_thumbnail_default_size', $size );
$atts = apply_filters( 'sinatra_post_thumbnail_default_size', $atts );
$html = get_the_post_thumbnail( $post, $size, $atts );
if ( $caption ) {
$caption = wp_get_attachment_caption( $attachment_id );
if ( ! empty( $caption ) ) {
$caption = '' . wp_kses( $caption, sinatra_get_allowed_html_tags( 'button' ) ) . '
';
}
$html .= $caption;
}
return apply_filters( 'sinatra_post_thumbnail_html', $html, $post, $attachment_id, $size, $atts );
}
endif;
if ( ! function_exists( 'sinatra_entry_get_permalink' ) ) :
/**
* Get permalink for one post entry.
*
* @since 1.0.0
* @param int|WP_Post $post Optional. Post ID or WP_Post object. Default is global `$post`.
* @return string
*/
function sinatra_entry_get_permalink( $post = null ) {
$permalink = '';
if ( 'link' === get_post_format( $post ) ) {
$permalink = get_url_in_content( get_the_content( $post ) );
} else {
$permalink = get_permalink( $post );
}
return apply_filters( 'sinatra_entry_permalink', $permalink );
}
endif;
/**
* Determines breadcrumbs are displayed.
*
* @since 1.1.0
*
* @param int $post_id Optional. The post ID to check.
* @return boolean, Breadcrumbs displayed.
*/
function sinatra_has_breadcrumbs( $post_id = 0 ) {
if ( ! $post_id ) {
$post_id = sinatra_get_the_id();
}
$display = sinatra_option( 'breadcrumbs_enable' );
if ( $display && sinatra_is_section_disabled( sinatra_option( 'breadcrumbs_hide_on' ), $post_id ) ) {
$display = false;
}
if ( $display && $post_id && get_post_meta( $post_id, 'sinatra_disable_breadcrumbs', true ) ) {
$display = false;
}
return apply_filters( 'sinatra_has_breadcrumbs', $display, $post_id );
}
/**
* Determines if page header breadcrumbs are displayed.
*
* @since 1.0.0
*
* @param int $post_id Optional. The post ID to check.
* @return boolean, Breadcrumbs displayed.
*/
function sinatra_page_header_has_breadcrumbs( $post_id = 0 ) {
return sinatra_has_breadcrumbs( $post_id ) && 'in-page-header' === sinatra_option( 'breadcrumbs_position' );
}
/**
* Determines if page header title & description are displayed.
*
* @since 1.0.0
*
* @param int $post_id Optional. The post ID to check.
* @return boolean, Title & description displayed.
*/
function sinatra_page_header_has_title( $post_id = 0 ) {
if ( ! $post_id ) {
$post_id = sinatra_get_the_id();
}
$display = true;
if ( is_singular( 'post' ) && ! in_array( sinatra_option( 'single_title_position' ), array( 'in-page-header' ), true ) ) {
$display = false;
}
// Disabled in post meta settings.
if ( get_post_meta( $post_id, 'sinatra_disable_page_title', true ) ) {
$display = false;
}
// Finally, check if title string is empty.
if ( $display ) {
$title = apply_filters( 'sinatra_page_header_title', sinatra_get_the_title() );
if ( ! $title ) {
$display = false;
}
}
return apply_filters( 'sinatra_page_header_has_title', $display );
}
/**
* Determines if comments are displayed.
*
* @since 1.0.0
* @return boolean, true if comments are displayed.
*/
function sinatra_comments_displayed() {
$display = true;
/*
* Return false if comments are closed and there are no comments already posted.
*/
if ( ! is_singular() || ( ! comments_open() && ! get_comments_number() ) || ! post_type_supports( get_post_type(), 'comments' ) ) {
$display = false;
}
/*
* If the current post is protected by a password and
* the visitor has not yet entered the password we will
* return early without loading the comments.
*/
if ( post_password_required() ) {
return false;
}
return apply_filters( 'sinatra_display_comments', $display );
}
/**
* Determines if comments toggle is displayed.
*
* @since 1.0.0
* @return boolean, true if comments toggle is displayed.
*/
function sinatra_comments_toggle_displayed() {
$return = sinatra_option( 'single_toggle_comments' );
return apply_filters( 'sinatra_display_comments_toggle', $return );
}
/**
* Add attributes to Masthead.
*
* @since 1.1.1
* @param array $atts Attributes array.
* @param int $post_id Optional. The post ID to check. If not supplied, defaults to the current post if used in the loop.
* @return void|string
*/
function sinatra_masthead_atts( $atts = array(), $post_id = '' ) {
if ( is_single() && 'in-page-header' === sinatra_option( 'single_title_position' ) && sinatra_is_header_transparent( $post_id ) ) {
if ( sinatra_show_post_thumbnail( $post_id ) && sinatra_single_post_displays( 'thumb' ) ) {
$atts['style'] = isset( $atts['style'] ) ? $atts['style'] : '';
$atts['style'] .= 'background-image: url(' . wp_get_attachment_image_url( get_post_thumbnail_id( $post_id ), 'full' ) . ');';
}
}
$atts = apply_filters( 'sinatra_masthead_atts', $atts, $post_id );
if ( ! empty( $atts ) ) {
$output = '';
foreach ( $atts as $att => $content ) {
$output .= sanitize_title( $att ) . '="' . esc_attr( $content ) . '"';
}
$output = empty( $output ) ? '' : ' ' . $output;
print $output; // phpcs:ignore
}
}
/**
* Add classes to Header.
*
* @since 1.0.0
* @param array $classes Classes array.
* @return void
*/
function sinatra_header_classes( $classes = array() ) {
// Optional wide header container.
if ( 'full-width' === sinatra_option( 'header_container_width' ) ) {
$classes[] = 'si-container__wide';
}
$classes = apply_filters( 'sinatra_header_classes', $classes );
if ( ! empty( $classes ) ) {
$classes = trim( implode( ' ', $classes ) );
print 'class="' . esc_attr( $classes ) . '"';
}
}
/**
* Add classes to Top Bar.
*
* @since 1.0.0
* @param array $classes Classes array.
* @return void
*/
function sinatra_top_bar_classes( $classes = array() ) {
// Optional wide top bar container.
if ( 'full-width' === sinatra_option( 'top_bar_container_width' ) ) {
$classes[] = 'si-container__wide';
}
// Top Bar visibility.
$top_bar_visibility = sinatra_option( 'top_bar_visibility' );
if ( 'all' !== $top_bar_visibility ) {
$classes[] = 'sinatra-' . $top_bar_visibility;
}
$classes = apply_filters( 'sinatra_top_bar_classes', $classes );
if ( ! empty( $classes ) ) {
$classes = trim( implode( ' ', $classes ) );
print 'class="' . esc_attr( $classes ) . '"';
}
}
/**
* Add classes to Page Header.
*
* @since 1.0.0
* @param array $classes Classes array.
* @return void
*/
function sinatra_page_header_classes( $classes = array() ) {
$classes[] = 'page-header';
// Background image.
if ( is_single() && 'in-page-header' === sinatra_option( 'single_title_position' ) ) {
$classes[] = 'si-page-title-has-bg-img';
}
if ( sinatra_page_header_has_title() ) {
$classes[] = 'si-has-page-title';
}
if ( sinatra_page_header_has_breadcrumbs() ) {
$classes[] = 'si-has-breadcrumbs';
}
$classes = apply_filters( 'sinatra_page_header_classes', $classes );
if ( ! empty( $classes ) ) {
$classes = trim( implode( ' ', $classes ) );
print 'class="' . esc_attr( $classes ) . '"';
}
}
/**
* Add attributes to Page Header.
*
* @since 1.0.0
* @param array $atts Array of additional attributes.
* @param int $post_id Optional. The post ID to check. If not supplied, defaults to the current post if used in the loop.
* @return void
*/
function sinatra_page_header_atts( $atts = array(), $post_id = '' ) {
if ( is_single() && 'in-page-header' === sinatra_option( 'single_title_position' ) && ! sinatra_is_header_transparent( $post_id ) ) {
if ( sinatra_show_post_thumbnail( $post_id ) && sinatra_single_post_displays( 'thumb' ) ) {
$atts['style'] = isset( $atts['style'] ) ? $atts['style'] : '';
$atts['style'] .= 'background-image: url(' . wp_get_attachment_image_url( get_post_thumbnail_id( $post_id ), 'full' ) . ');';
}
}
$atts = apply_filters( 'sinatra_page_header_atts', $atts, $post_id );
if ( ! empty( $atts ) ) {
$output = '';
foreach ( $atts as $att => $content ) {
$output .= sanitize_title( $att ) . '="' . esc_attr( $content ) . '"';
}
$output = empty( $output ) ? '' : ' ' . $output;
print $output; // phpcs:ignore
}
}
/**
* Add classes to Hero.
*
* @since 1.0.0
* @param array $classes Classes array.
* @return void
*/
function sinatra_hero_classes( $classes = array() ) {
// Hero visibility.
$visibility = sinatra_option( 'hero_visibility' );
if ( 'all' !== $visibility ) {
$classes[] = 'sinatra-' . $visibility;
}
$classes = apply_filters( 'sinatra_hero_classes', $classes );
if ( ! empty( $classes ) ) {
$classes = trim( implode( ' ', $classes ) );
print 'class="' . esc_attr( $classes ) . '"';
}
}
/**
* Add classes to Scroll Top Button.
*
* @since 1.0.0
* @param array $classes Classes array.
* @return void
*/
function sinatra_scroll_top_classes( $classes = array() ) {
// Scroll Top visibility.
$scroll_top_visibility = sinatra_option( 'scroll_top_visibility' );
if ( 'all' !== $scroll_top_visibility ) {
$classes[] = 'sinatra-' . $scroll_top_visibility;
}
$classes = apply_filters( 'sinatra_scroll_top_classes', $classes );
if ( ! empty( $classes ) ) {
$classes = trim( implode( ' ', $classes ) );
print 'class="' . esc_attr( $classes ) . '"';
}
}
/**
* Add classes to Page Preloader.
*
* @since 1.0.0
* @return void
*/
function sinatra_preloader_classes() {
$classes = array();
// Page Preloader visibility.
$preloader_visibility = sinatra_option( 'preloader_visibility' );
if ( 'all' !== $preloader_visibility ) {
$classes[] = 'sinatra-' . $preloader_visibility;
}
$classes = apply_filters( 'sinatra_preloader_classes', $classes );
if ( ! empty( $classes ) ) {
$classes = trim( implode( ' ', $classes ) );
print ' class="' . esc_attr( $classes ) . '"';
}
}
/**
* Add classes to Main Footer.
*
* @since 1.0.0
* @param array $classes Classes array.
* @return void
*/
function sinatra_footer_classes( $classes = array() ) {
// Main Footer visibility.
$footer_visibility = sinatra_option( 'footer_visibility' );
if ( 'all' !== $footer_visibility ) {
$classes[] = 'sinatra-' . $footer_visibility;
}
$classes = apply_filters( 'sinatra_footer_classes', $classes );
if ( ! empty( $classes ) ) {
$classes = trim( implode( ' ', $classes ) );
print 'class="' . esc_attr( $classes ) . '"';
}
}
/**
* Get footer widgets column count.
*
* @since 1.0.0
* @return integer Number of footer columns
*/
function sinatra_get_footer_column_count() {
$count = 4;
return apply_filters( 'sinatra_footer_column_count', $count );
}
/**
* Get footer widgets column count.
*
* @since 1.0.0
* @param string $layout Footer layout.
* @return array Classes array
*/
function sinatra_get_footer_column_class( $layout = 'layout-1' ) {
$classes = array(
'layout-1' => array(
'col-xs-12 col-sm-6 stretch-xs col-md-3',
'col-xs-12 col-sm-6 stretch-xs col-md-3',
'col-xs-12 col-sm-6 stretch-xs col-md-3',
'col-xs-12 col-sm-6 stretch-xs col-md-3',
),
'layout-2' => array(
'col-xs-12 col-sm-6 stretch-xs col-md-4',
'col-xs-12 col-sm-6 stretch-xs col-md-4',
'col-xs-12 col-sm-6 stretch-xs col-md-4',
),
'layout-3' => array(
'col-xs-12 col-sm-6 stretch-xs col-md-8',
'col-xs-12 col-sm-6 stretch-xs col-md-4',
),
'layout-4' => array(
'col-xs-12 col-sm-6 stretch-xs col-md-4',
'col-xs-12 col-sm-6 stretch-xs col-md-8',
),
);
$classes = apply_filters( 'sinatra_footer_column_classes', $classes, $layout );
$classes = isset( $classes[ $layout ] ) ? $classes[ $layout ] : array();
$align_center = sinatra_option( 'footer_widgets_align_center' );
if ( $align_center && ! empty( $classes ) ) {
foreach ( $classes as $key => $column_class ) {
$classes[ $key ] = $column_class . ' center-text';
}
}
return $classes;
}
/**
* Add classes to Copyright bar.
*
* @since 1.0.0
* @param array $classes Classes array.
* @return void
*/
function sinatra_copyright_classes( $classes = array() ) {
// Copyright visibility.
$visibility = sinatra_option( 'copyright_visibility' );
if ( 'all' !== $visibility ) {
$classes[] = 'sinatra-' . $visibility;
}
// Copyright separator style.
$separator = sinatra_option( 'copyright_separator' );
if ( $separator && 'none' !== $separator ) {
$classes[] = $separator;
}
$classes = apply_filters( 'sinatra_copyright_classes', $classes );
if ( ! empty( $classes ) ) {
$classes = trim( implode( ' ', $classes ) );
print 'class="' . esc_attr( $classes ) . '"';
}
}
/**
* Adds custom classes to the array of body classes.
*
* @since 1.0.0
* @param array $classes Classes for the body element.
* @return array
*/
function sinatra_body_classes( $classes ) {
// Topbar separator styles.
if ( sinatra_option( 'top_bar_widgets_separator' ) ) {
$classes[] = 'sinatra-topbar__separators-' . sinatra_option( 'top_bar_widgets_separator' );
}
// Mobile.
if ( wp_is_mobile() ) {
$classes[] = 'sinatra-is-mobile';
}
// Site layout.
$classes[] = 'sinatra-layout__' . sinatra_get_site_layout();
// Dropdown indicators.
if ( sinatra_option( 'main_nav_sub_indicators' ) ) {
$classes[] = 'sinatra-with-dropdown-indicators';
}
// Header related styles.
if ( sinatra_is_header_displayed() ) {
// Header layout.
$classes[] = 'sinatra-header-' . sinatra_option( 'header_layout' );
// Menu item hover animation.
$classes[] = 'sinatra-menu-animation-' . sinatra_option( 'main_nav_hover_animation' );
// Header widgets separator.
$classes[] = 'sinatra-header__separators-' . sinatra_option( 'header_widgets_separator' );
}
// Transparent header.
if ( sinatra_is_header_transparent() && ( sinatra_is_header_displayed() || sinatra_is_top_bar_displayed() ) ) {
$classes[] = 'si-tsp-header';
if ( ! sinatra_is_page_header_displayed() ) {
$classes[] = 'si-tsp-absolute';
}
}
// Blog style.
if ( is_home() || is_archive() || is_search() ) {
$sinatra_article_feed_layout = sinatra_get_article_feed_layout();
if ( '' !== $sinatra_article_feed_layout ) {
$classes[] = 'si-' . sinatra_get_article_feed_layout();
}
}
// Single post.
if ( is_singular( 'post' ) ) {
$title_position = sinatra_option( 'single_title_position' );
$classes[] = 'si-single-title-' . $title_position;
// Narrow content for single post.
if ( 'narrow' === sinatra_option( 'single_content_width' ) ) {
$classes[] = 'narrow-content';
}
}
$title_alignment = is_single() ? sinatra_option( 'single_title_alignment' ) : sinatra_option( 'page_header_alignment' );
$classes[] = 'si-page-title-align-' . $title_alignment;
// Has comments.
if ( is_singular() && comments_open() ) {
$classes[] = 'comments-open';
}
// RTL.
if ( is_rtl() ) {
$classes[] = 'sinatra-is-rtl';
}
// Sidebar.
if ( sinatra_is_sidebar_displayed() ) {
$classes[] = 'si-has-sidebar';
// Sticky sidebar.
$sidebar_sticky = sinatra_option( 'sidebar_sticky' );
if ( $sidebar_sticky ) {
$classes[] = 'si-sticky-' . $sidebar_sticky;
}
// Sidebar style.
$classes[] = 'sinatra-sidebar-style-' . sinatra_option( 'sidebar_style' );
// Sidebar position.
$classes[] = 'sinatra-sidebar-position__' . sinatra_get_sidebar_position();
$classes[] = 'si-sidebar-r__' . sinatra_option( 'sidebar_responsive_position' );
} else {
// No sidebar.
$classes[] = 'sinatra-no-sidebar';
}
// Entry media hover style.
$classes[] = 'entry-media-hover-style-1';
// Show/Hide Comments button.
if ( sinatra_comments_displayed() && sinatra_comments_toggle_displayed() ) {
$classes[] = 'sinatra-has-comments-toggle';
}
// Copyright layout.
if ( sinatra_is_copyright_bar_displayed() ) {
$classes[] = 'sinatra-copyright-' . sinatra_option( 'copyright_layout' );
}
// Pre Footer.
if ( sinatra_is_pre_footer_displayed() ) {
// Call to Action classes.
if ( sinatra_is_pre_footer_cta_displayed() ) {
$style = absint( sinatra_option( 'pre_footer_cta_style' ) );
if ( 1 === $style && ! sinatra_is_footer_displayed() && ! sinatra_is_copyright_bar_displayed() ) {
$classes[] = 'si-pre-footer-no-margin';
}
$classes[] = 'si-pre-footer-cta-style-' . $style;
}
}
// Custom input fields design.
if ( sinatra_option( 'custom_input_style' ) ) {
$classes[] = 'si-input-supported';
}
// Validate comment form.
$classes[] = 'validate-comment-form';
// Menu accessibility support.
$classes[] = 'si-menu-accessibility';
return $classes;
}
add_filter( 'body_class', 'sinatra_body_classes' );
/**
* Modifies the default Read More link. Do not show if "Read More" button (from Customizer) is enabled.
*
* @since 1.0.0
* @return Modified read more HTML.
*/
function sinatra_modify_read_more_link() {
$has_read_more = in_array( 'summary-footer', sinatra_get_blog_entry_elements(), true );
$class = $has_read_more ? ' sinatra-hide' : '';
return '';
}
add_filter( 'the_content_more_link', 'sinatra_modify_read_more_link' );
/**
* Insert dynamic text into content.
*
* @since 1.0.0
* @param string $content Text to be modified.
* @return string Modified text.
*/
function sinatra_dynamic_strings( $content ) {
$content = str_replace( '{{the_year}}', date_i18n( 'Y' ), $content );
$content = str_replace( '{{the_date}}', date_i18n( get_option( 'date_format' ) ), $content );
$content = str_replace( '{{site_title}}', get_bloginfo( 'name' ), $content );
$content = str_replace( '{{theme_link}}', 'Sinatra WordPress Theme', $content );
if ( false !== strpos( $content, '{{current_user}}' ) ) {
$current_user = wp_get_current_user();
$content = str_replace( '{{current_user}}', apply_filters( 'sinatra_logged_out_user_name', $current_user->display_name ), $content );
}
return apply_filters( 'sinatra_parse_dynamic_strings', $content );
}
add_filter( 'sinatra_dynamic_strings', 'sinatra_dynamic_strings' );
/**
* Add headers for IE to override IE's Compatibility View Settings
*
* @since 1.0.0
* @param array $headers The list of headers to be sent.
*/
function sinatra_x_ua_compatible_headers( $headers ) {
$headers['X-UA-Compatible'] = 'IE=edge';
return $headers;
}
add_filter( 'wp_headers', 'sinatra_x_ua_compatible_headers' );
/**
* Removes parentheses from widget category count.
*
* @since 1.0.0
* @param array $variable The filtered variable.
*/
function sinatra_cat_count_filter( $variable ) {
$variable = str_replace( '(', ' ', $variable );
$variable = str_replace( ')', ' ', $variable );
return $variable;
}
add_filter( 'wp_list_categories', 'sinatra_cat_count_filter' );
/**
* Removes parentheses from widget archive count.
*
* @since 1.0.0
* @param array $variable The filtered variable.
*/
function sinatra_arc_count_filter( $variable ) {
$variable = str_replace( '(', '', $variable );
$variable = str_replace( ')', '', $variable );
return $variable;
}
add_filter( 'get_archives_link', 'sinatra_arc_count_filter' );
/**
* Add descriptions on menu dropdowns.
*
* @since 1.0.0
* @param string $item_output HTML output for the menu item.
* @param object $item menu item object.
* @param int $depth depth in menu structure.
* @param object $args arguments passed to wp_nav_menu().
* @return string $item_output
*/
function sinatra_header_menu_desc( $item_output, $item, $depth, $args ) {
if ( $depth > 0 && $item->description ) {
$item_output = str_replace( '', '' . $item->description . '', $item_output );
}
return $item_output;
}
add_filter( 'walker_nav_menu_start_el', 'sinatra_header_menu_desc', 10, 4 );