File: /var/www/web37/htdocs/sexnetzwerk24/wp-content/themes/classipress/content-dashboard-ad_listing.php
<?php
/**
* Dashboard Listings loop content.
*
* @package ClassiPress\Templates
* @author AppThemes
* @since ClassiPress 3.4
*/
global $i;
$status = cp_get_listing_status_name( $post->ID );
$expire_time = strtotime( get_post_meta( $post->ID, 'cp_sys_expire_date', true ) );
$expire_date = appthemes_display_date( $expire_time );
?>
<tr class="even <?php echo $status; ?>">
<td class="text-right"><?php echo $i; ?>.</td>
<td>
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<div class="meta">
<span class="folder"><?php echo get_the_term_list( get_the_id(), APP_TAX_CAT, '', ', ', '' ); ?></span> |
<span class="clock"><span><?php echo appthemes_display_date( $post->post_date, 'date' ); ?></span></span>
</div>
</td>
<?php if ( current_theme_supports( 'app-stats' ) ) { ?>
<td class="text-center"><?php echo appthemes_get_stats_by( $post->ID, 'total' ); ?></td>
<?php } ?>
<td class="text-center">
<span class="status"><?php echo cp_get_status_i18n( $status ); ?></span>
<?php if ( in_array( $status, array( 'live', 'live_expired', 'ended' ) ) ) { ?>
<p class="small">(<?php echo $expire_date; ?>)</p>
<?php } ?>
</td>
<td class="text-center"><?php cp_dashboard_listing_actions(); ?></td>
</tr>