| 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
# post content for standart post types in listing pages
#
global $rt_post_values, $rt_blog_list_atts;
extract($rt_post_values);
extract($rt_blog_list_atts);
$post_format = get_post_format();
?>
<!-- blog box-->
<article <?php post_class("loop")?> id="post-<?php the_ID(); ?>">
<?php if( ! empty( $thumbnail_image_output ) ):?>
<?php if( $post_format != "aside" || $post_format != "link" ):?>
<figure class="featured_image">
<a href="<?php echo esc_url( $permalink ); ?>" title="<?php the_title(); ?>" rel="bookmark"><?php echo wp_kses_post( $thumbnail_image_output ); ?></a>
</figure>
<?php else:?>
<figure class="featured_image">
<?php echo wp_kses_post( $thumbnail_image_output ); ?>
</figure>
<?php endif; ?>
<?php endif; ?>
<?php if($show_date !== "false"):?>
<div class="date"><?php echo get_the_date(); ?></div>
<?php endif;?>
<div class="text">
<!-- blog headline-->
<?php if( $post_format != "aside" ):?>
<h5 class="clean_heading"><a href="<?php echo esc_url($permalink); ?>" title="<?php the_title(); ?>" rel="bookmark"><?php the_title(); ?></a></h5>
<?php else:?>
<h5 class="clean_heading"><?php the_title(); ?></h5>
<?php endif; ?>
<?php
if($excerpt_length>0){
echo wp_html_excerpt(get_the_excerpt(),$excerpt_length,"...");
}
?>
<?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) );
?>
</div>
</article>
<!-- / blog box-->