| Server IP : 104.21.32.175 / Your IP : 216.73.217.138 Web Server : Apache System : Linux vps-850873.bgcolombia.com 3.10.0-1160.144.1.el7.tuxcare.els5.x86_64 #1 SMP Wed May 13 12:31:54 UTC 2026 x86_64 User : melizav ( 1018) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/melizav/.trash/oceanwp/partials/single/ |
Upload File : |
<?php
/**
* Post single meta
*
* @package OceanWP WordPress theme
*/
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
// Get meta sections
$sections = oceanwp_blog_single_meta();
// Return if sections are empty
if ( empty( $sections )
|| 'post' != get_post_type() ) {
return;
}
// Return if quote format
if ( 'quote' == get_post_format() ) {
return;
} ?>
<?php do_action( 'ocean_before_single_post_meta' ); ?>
<ul class="meta clr">
<?php
// Loop through meta sections
foreach ( $sections as $section ) { ?>
<?php if ( 'author' == $section ) { ?>
<li class="meta-author"<?php oceanwp_schema_markup( 'author_name' ); ?>><span class="screen-reader-text"><?php _e( 'Post Author:', 'oceanwp' ); ?></span><i class="icon-user" aria-hidden="true"></i><?php echo the_author_posts_link(); ?></li>
<?php } ?>
<?php if ( 'date' == $section ) { ?>
<li class="meta-date"<?php oceanwp_schema_markup( 'publish_date' ); ?>><span class="screen-reader-text"><?php _e( 'Post published:', 'oceanwp' ); ?></span><i class="icon-clock" aria-hidden="true"></i><?php echo get_the_date(); ?></li>
<?php } ?>
<?php if ( 'mod-date' == $section ) { ?>
<li class="meta-mod-date"<?php oceanwp_schema_markup( 'modified_date' ); ?>><span class="screen-reader-text"><?php _e( 'Post last modified:', 'oceanwp' ); ?></span><i class="icon-note" aria-hidden="true"></i><?php echo get_the_modified_date(); ?></li>
<?php } ?>
<?php if ( 'categories' == $section ) { ?>
<li class="meta-cat"><span class="screen-reader-text"><?php _e( 'Post Category:', 'oceanwp' ); ?></span><i class="icon-folder" aria-hidden="true"></i><?php the_category( ' <span class="owp-sep">/</span> ', get_the_ID() ); ?></li>
<?php } ?>
<?php if ( 'comments' == $section && comments_open() && ! post_password_required() ) { ?>
<li class="meta-comments"><span class="screen-reader-text"><?php _e( 'Post Comments:', 'oceanwp' ); ?></span><i class="icon-bubble" aria-hidden="true"></i><?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_meta' ); ?>