Sid Gifari From Gifari Industries - BD Cyber Security Team
Home
/
home
/
drleilu
/
www
/
wp-content
/
themes
/
beautique
/
skins
/
default
/
templates
/
single-styles
/
✏️
Editing: style-5.php
<?php /** * The "Style 5" template to display the post header of the single post or attachment: * title and meta placed in the post header and featured image placed inside content * * @package BEAUTIQUE * @since BEAUTIQUE 1.75.0 */ if ( apply_filters( 'beautique_filter_single_post_header', is_singular( 'post' ) || is_singular( 'attachment' ) ) ) { ob_start(); ?> <div class="post_header_wrap post_header_wrap_in_header post_header_wrap_style_<?php echo esc_attr( beautique_get_theme_option( 'single_style' ) ); ?>"> <?php // Post title and meta beautique_show_post_title_and_meta( array( 'author_avatar' => true, 'show_meta' => true, ) ); ?> </div> <?php $beautique_post_header = ob_get_contents(); ob_end_clean(); if ( strpos( $beautique_post_header, 'post_title' ) !== false ) { do_action( 'beautique_action_before_post_header' ); ?> <div class="content_wrap"> <?php beautique_show_layout( $beautique_post_header ); ?> </div> <?php do_action( 'beautique_action_after_post_header' ); } }
💾 Save
❌ Cancel