File "meta-2-20250315200303.php"
Full Path: /home/amervokv/ecomlive.net/wp-content/themes/oceanwp/partials/single/metas/meta-2-20250315200303.php
File size: 2.41 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Post single header meta style
*
* @package OceanWP WordPress theme
*/
// Exit if accessed directly.
defined( 'ABSPATH' ) or exit;
// Get meta sections.
$sections = ocean_blog_single_header_meta();
// Get the current post type.
$post_type = get_post_type();
// Allow post types for the single post header template.
$allowed_post_types = apply_filters( 'oceanwp_single_post_header_allowed_post_types', array( 'post' ) );
// Return if sections are empty, the post type is not allowed, or it's a quote post format.
if ( empty( $sections ) || ! in_array( $post_type, $allowed_post_types, true ) || 'quote' === get_post_format() ) {
return;
}
// Don't display modified date if the same as the published date.
$ocean_date_onoff = false;
$ocean_date_onoff = apply_filters( 'ocean_single_header_modified_date_state', $ocean_date_onoff );
$display_mod_date = ( false === $ocean_date_onoff || ( true === $ocean_date_onoff && ( get_the_date() != get_the_modified_date() ) ) ) ? true : false;
do_action( 'ocean_before_single_post_header_meta' );
?>
<ul class="meta-item meta-style-2 <?php echo ocean_blog_single_header_meta_separator_class(); ?>">
<?php
// Loop through meta sections.
foreach ( $sections as $section ) {
?>
<?php if ( 'author' === $section ) { ?>
<li class="meta-author"><?php ocean_get_post_author(); ?></li>
<?php } ?>
<?php if ( 'date' === $section ) { ?>
<li class="meta-date"><?php ocean_get_post_date(); ?></li>
<?php } ?>
<?php if ( 'mod-date' === $section && true === $display_mod_date ) { ?>
<li class="meta-mod-date"><?php ocean_get_post_modified_date(); ?></li>
<?php } ?>
<?php if ( 'categories' === $section && has_category() ) { ?>
<li class="meta-cat"><?php ocean_get_post_categories(); ?></li>
<?php } ?>
<?php if ( 'tags' === $section && ! empty( ocean_get_post_tags( '', false ) ) ) { ?>
<li class="meta-tag"><?php ocean_get_post_tags(); ?></li>
<?php } ?>
<?php if ( 'reading-time' === $section ) { ?>
<li class="meta-rt"><?php ocean_get_post_reading_time(); ?></li>
<?php } ?>
<?php if ( 'comments' === $section && comments_open() && ! post_password_required() ) { ?>
<li class="meta-comments"><?php comments_popup_link( esc_html__( '0 Comments', 'oceanwp' ), esc_html__( '1 Comment', 'oceanwp' ), esc_html__( '% Comments', 'oceanwp' ), 'comments-link' ); ?></li>
<?php } ?>
<?php } ?>
</ul>
<?php do_action( 'ocean_after_single_post_header_meta' ); ?>