| Server IP : 216.250.13.251 / Your IP : 216.73.217.37 Web Server : nginx/1.24.0 System : Linux gunay 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : root ( 0) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/gunay/wp-content/themes/rttheme19/post-contents/ |
Upload File : |
<?php
#
# rt-theme
# single post content for link post types
#
global $rt_post_values, $rt_global_variables;
extract($rt_post_values);
?>
<article <?php post_class("single")?> id="post-<?php the_ID(); ?>">
<?php if( ! empty( $thumbnail_image_output ) && $featured_image_single_page ):?>
<section class="featured_image featured_media">
<?php
//create lightbox link
do_action("create_lightbox_link",
array(
'class' => 'imgeffect zoom lightbox_ featured_image',
'href' => $featured_image_url,
'title' => esc_html_x('Enlarge Image','Frontend Text','rt_theme'),
'data_group' => 'image_'.$featured_image_id,
'data_title' => $title,
'data_thumbnail' => $lightbox_thumbnail,
'inner_content' => $thumbnail_image_output
)
);
?>
<span class="format-icon icon-pencil"></span>
</section>
<?php endif;?>
<section class="post-title-holder row">
<?php if($show_share_buttons):?>
<div class="col col-sm-7 col-xs-12">
<?php else:?>
<div class="col col-sm-12 col-xs-12">
<?php endif;?>
<?php if( $show_date !== "false" ):?><section class="date"><?php the_date(); ?></section><?php endif;?>
<!-- blog headline-->
<?php printf('<%2$s class="entry-title">%1$s</%2$s>', get_the_title(), $rt_global_variables["heading_tag"] ) ?>
<?php if($show_share_buttons):?>
</div>
<div class="col col-sm-5 col-xs-12">
<?php
//Social Share buttons
echo do_shortcode( apply_filters("rt_social_share_shortcode","[rt_social_media_share]") );
?>
<?php endif;?>
</div><!-- / .col -->
</section>
<div class="text entry-content">
<!-- content-->
<?php the_content(); ?>
<!-- pagination-->
<?php wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . esc_html__( 'Pages:','rt_theme' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) ); ?>
<!-- updated-->
<span class="updated hidden"><?php echo the_modified_date();?></span>
</div>
<?php
//post meta bar
do_action( "post_meta_bar", array( "show_author"=> $show_author, "show_categories" => $show_categories, "show_comment_numbers" => $show_comment_numbers, "show_date" => $show_date, "show_tags" => $show_tags) );
?>
</article>