File: /home/salhiscp/salhab360photos.com/wp-content/themes/acora/template-parts/page-single.php
<?php
/**
* Single.
*
* @package acora
* @since acora 1.0
*/
?>
<?php
$class ='';
if(!AcoraData::$data->page_settings['use_page_share_feature']){
$class ='no-meta';
}
?>
<div id='post-<?php the_ID(); ?>' <?php wp_kses(post_class('single ' . esc_attr($class) . ' fwd-hide'), wp_kses_allowed_html('post')); ?>>
<header class="entry-header">
<div class="title">
<div class="block">
<?php acora_get_post_title(); ?>
</div><!-- .block -->
</div><!-- .title -->
</header><!-- .entry-header -->
<div class="entry-content">
<?php
if(!post_password_required()) {
// Featured image.
if(has_post_thumbnail()){
$featured_image = wp_get_attachment_url(get_post_thumbnail_id(get_the_ID()));
$featured_image_meta = wp_get_attachment_metadata(get_post_thumbnail_id(get_the_ID()));
}
// Featured image.
if(has_post_thumbnail()):?>
<div id="featured_image<?php echo esc_attr(get_the_ID()); ?>" class="featured-image"></div>
<?php endif;
}
the_content();
?>
</div><!-- .entry-content -->
<div class="clear"></div>
<?php
$class ='entry-footer';
if(!AcoraData::$data->page_settings['use_page_share_feature'] || !defined('ACORA_SETTINGS_INIT')){
$class ='entry-footer no-meta';
}
if(!AcoraData::$data->page_settings['use_page_share_feature'] && !current_user_can('administrator')){
$class ='entry-footer no-display';
}else if((!AcoraData::$data->page_settings['use_page_share_feature'] && current_user_can('administrator'))
|| (!defined('ACORA_SETTINGS_INIT') && current_user_can('administrator'))
){
$class ='entry-footer only-can-edit';
}
?>
<footer class="<?php echo esc_attr($class); ?>">
<?php
if(!post_password_required()) {
if(function_exists('acora_settings_get_share_buttons')){
echo acora_settings_get_share_buttons();
}
}
?>
</footer><!-- .entry-footer -->
</div>