> true, 'ratio' => '2-3', 'size' => 'medium_large', 'imageLink' => true, ); $slug = ( is_search() ? 'search' : get_post_type() ); $feature_element = kadence()->option( $slug . '_archive_element_feature', $defaults ); if ( isset( $feature_element ) && is_array( $feature_element ) && true === $feature_element['enabled'] ) { $feature_element = wp_parse_args( $feature_element, $defaults ); $ratio = ( isset( $feature_element['ratio'] ) && ! empty( $feature_element['ratio'] ) ? $feature_element['ratio'] : '2-3' ); $size = ( isset( $feature_element['size'] ) && ! empty( $feature_element['size'] ) ? $feature_element['size'] : 'medium_large' ); if ( isset( $feature_element['imageLink'] ) && ! $feature_element['imageLink'] ) { ?>
the_title_attribute( array( 'echo' => false, ) ), ) ); ?>
the_title_attribute( array( 'echo' => false, ) ), ) ); ?>
>
post_parent ) ) { // TODO: There should be a WordPress core function for this, similar to `the_post_navigation()`. $attachment_navigation = ''; ob_start(); previous_image_link( false ); $prev_link = ob_get_clean(); if ( ! empty( $prev_link ) ) { $attachment_navigation .= ''; } ob_start(); next_image_link( false ); $next_link = ob_get_clean(); if ( ! empty( $next_link ) ) { $attachment_navigation .= ''; } if ( ! empty( $attachment_navigation ) ) { echo _navigation_markup( $attachment_navigation, $class = 'post-navigation', __( 'Post navigation', 'kadence' ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } } // Show comments only when the post type supports it and when comments are open or at least one comment exists. if ( post_type_supports( get_post_type(), 'comments' ) && ( comments_open() || get_comments_number() ) ) { comments_template(); } }