Server IP : 15.235.198.142 / Your IP : 216.73.216.197 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/yme/wp-content/themes/oceanwp/partials/single/headers/ |
Upload File : |
<?php /** * OceanWP Single Post Header template * * @package OceanWP WordPress theme */ // Exit if accessed directly. defined( 'ABSPATH' ) || exit; // 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' ) ); // Only display for allowed post types. if ( ! in_array( $post_type, $allowed_post_types, true ) ) { return; } // Heading tag. $heading = 'h1'; $heading = apply_filters( 'single_ocean_header_4_h_tag', $heading ); // Display meta filter. $display_sph_meta = true; $display_sph_meta = apply_filters( 'display_single_ocean_header_4_meta', $display_sph_meta ); $author_avatar = ocean_get_post_author_avatar( array( 'before' => '<div class="post-author-avatar">', 'after' => '</div>', ), false ); $author_name = ocean_get_post_author( array( 'prefix' => '', 'before' => '<span class="post-author-name">', 'after' => '</span>', ), false ); ?> <div class="ocean-single-post-header single-post-header-wrap single-header-ocean-4"> <div class="sh-container head-row row-center"> <div class="col-xs-12 col-l-8"> <?php do_action( 'ocean_before_page_header' ); ?> <header class="blog-post-title"> <div class="blog-post-author"> <?php if ( ! empty($author_avatar) ) { echo wp_kses_post( $author_avatar ); } ?> <div class="blog-post-author-content"> <?php if ( ! empty($author_name) ) { echo wp_kses_post( $author_name ); } ?> </div> </div><!-- .blog-post-author --> <?php the_title( '<' . esc_attr( $heading ) . ' class="single-post-title">', '</' . esc_attr( $heading ) . '>' ); ?> <?php if ( true === $display_sph_meta ) { ?> <?php do_action( 'ocean_single_post_header_meta' ); ?> <?php } ?> </header><!-- .blog-post-title --> <?php do_action( 'ocean_after_page_header' ); ?> </div> </div> </div>