HEX
Server: LiteSpeed
System: Linux sinope.sitehostingserver.com 5.14.0-611.49.2.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Apr 30 09:05:08 EDT 2026 x86_64
User: aprilnet (1155)
PHP: 7.4.33
Disabled: popen,imap_mail,exec,passthru,system,shell_exec,proc_open,pcntl_exec,eval,allow_url_fopen,allow_url_include,mail,proc_get_status,get_cfg_var,disk_free_space,disk_total_space,diskfreespace,getmygid,getmyinode,getmypid,geymyuid,proc_nice,proc_terminate,proc_close,apache_child_terminate,chown,lchgrp,lchown,link,readlink,highlight_file,show_source,php_strip_whitespace,get_meta_tags,dl,leak,pfsockopen,event_new,pcntl_signal,pcntl_alarm,register_tick_function,apache_setenv,define_syslog_variables,escapeshellarg,escapeshellcmd,ini_alter,ini_restore,inject_code,openlog,syslog,xmlrpc_entity_decode,phpAds_remoteInfo,phpAds_XmlRpc,phpAds_xmlrpcDecode,phpAds_xmlrpcEncode,chgrp,php_eval,safe_dir,root,ftok,egy_perl,symlink,wscript
Upload Files
File: /home/aprilnet/public_html/operationreality.org/wp-content/themes/boal/content-inner.php
<?php
/**
 * The default template for displaying content
 *
 * @author      NanoAgency
 * @link        http://nanoagency.co
 * @copyright   Copyright (c) 2015 NanoAgency
 * @license     GPL v2
 */

$format = get_post_format();
$add_class='';
?>

<article id="post-<?php the_ID(); ?>" <?php post_class('post-item post-list clearfix'); ?>>

    <div class="article-image">
        <?php if(has_post_format('gallery')) : ?>
            <?php $images = get_post_meta( $post->ID, '_format_gallery_images', true ); ?>
            <?php if($images) : ?>
                <div class="post-gallery">
                    <a href="<?php echo get_permalink() ?>"><?php the_post_thumbnail('boal-blog'); ?></a>
                    <?php if ( current_theme_supports( 'post-formats', $format ) ):?>
                        <a  href="<?php echo get_post_format_link( $format ); ?>" class="post-format"><i class="ti-camera"></i></a>
                    <?php endif;?>
                </div>
            <?php endif; ?>

        <?php elseif(has_post_format('video')) : ?>
            <div class="embed-responsive embed-responsive-16by9 post-video<?php echo (is_single()) ? ' single-video embed-responsive embed-responsive-16by9' : ''; ?>">
                <?php $sp_video = get_post_meta( get_the_ID(), '_format_video_embed', true ); ?>
                <?php if(wp_oembed_get( $sp_video )) : ?>
                    <?php echo wp_oembed_get($sp_video); ?>
                <?php else : ?>
                    <?php echo esc_url($sp_video); ?>
                <?php endif; ?>
                <span class="post-format"><i class="ti-control-play"></i></span>
            </div>
        <?php elseif(has_post_format('audio')) : ?>
            <div class="post-audio">
                <a href="<?php echo get_permalink() ?>"><?php the_post_thumbnail('boal-blog'); ?></a>
                <?php if ( current_theme_supports( 'post-formats', $format ) ):?>
                    <a  href="<?php echo get_post_format_link( $format ); ?>" class="post-format"><i class="ti-headphone"></i></a>
                <?php endif;?>
            </div>
        <?php elseif(has_post_format('quote')) : ?>
            <div class="post-quote">
                <?php $sp_quote = get_post_meta( $post->ID, '_format_quote_source_name', true ); ?>
                <a href="<?php echo get_permalink() ?>"><?php the_post_thumbnail('boal-blog'); ?></a>
                <?php if ( current_theme_supports( 'post-formats', $format ) ):?>
                    <a  href="<?php echo get_post_format_link( $format ); ?>" class="post-format"><i class="ti-quote-left"></i></a>
                <?php endif;?>
            </div>
        <?php else : ?>
            <?php if(has_post_thumbnail()) : ?>
                <?php if(!get_theme_mod('sp_post_thumb')) : ?>
                    <div class="post-image">
                        <a href="<?php echo get_permalink() ?>"><?php the_post_thumbnail('boal-blog'); ?></a>
                        <span class="post-format"><i class="ti-image"></i></span>
                        <?php if ( current_theme_supports( 'post-formats', $format ) ):?>
                            <a  href="<?php echo get_post_format_link( $format ); ?>" class="post-format"><i class="ti-image"></i></a>
                        <?php endif;?>
                    </div>
                <?php endif; ?>
            <?php else :
                $add_class='full-width';
            endif; ?>

        <?php endif; ?>
    </div>
    <div class="article-content <?php echo esc_attr($add_class);?>">
        <div class="entry-header clearfix">
             <span class="post-cat"><?php echo boal_category(', '); ?></span>
            <header class="entry-header-title">
                <?php
                    the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' );
                ?>
            </header>
            <!-- .entry-header -->
            <?php
                if ( in_array( get_post_type(), array( 'post', 'attachment' ) ) && !get_the_title()) {
                    $time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>';

                    if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) {
                        $time_string = '<time class="entry-date published" datetime="%1$s">%2$s</time><time class="updated" datetime="%3$s">%4$s</time>';
                    }

                    $time_string = sprintf( $time_string,
                        esc_attr( get_the_date( 'c' ) ),
                        get_the_date(),
                        esc_attr( get_the_modified_date( 'c' ) ),
                        get_the_modified_date()
                    );

                    printf( '<span class=" posted-on"><span class="screen-reader-text">%1$s </span><a href="%2$s" rel="bookmark"><i class="icon icon-clock"></i> %3$s</a></span>',
                        _x( 'Posted on', 'Used before publish date.', 'boal' ),
                        esc_url( get_permalink() ),
                        $time_string
                    );
                }
            ?>

        </div>
        <div class="entry-content">
            <?php
                if ( has_excerpt() || is_search() ){
                    boal_excerpt();
                }
                else{
                    echo boal_content(25);
                }

                wp_link_pages( array(
                    'before'      => '<div class="page-links"><span class="page-links-title">' . esc_html__( 'Pages:', 'boal' ) . '</span>',
                    'after'       => '</div>',
                    'link_before' => '<span class="page-numbers">',
                    'link_after'  => '</span>',
                    'pagelink'    => '<span class="screen-reader-text">' . esc_html__( 'Page', 'boal' ) . ' </span>%',
                    'separator'   => '<span class="screen-reader-text">, </span>',
                ) );
            ?>

        </div>
        <div class="article-meta clearfix">
            <?php boal_entry_meta(); ?>
        </div>
    </div>
</article><!-- #post-## -->