// SYSTEM PANEL //
[ROOT]
/
home
/
salvufkx
/
homedir
/
public_html
/
wp-content
/
plugins
/
shortcodes-ultimate
/
templates
[ PARENT ]
EDIT :: list-loop.php
<ul class="su-posts su-posts-list-loop"> <?php // Posts are found if ( $posts->have_posts() ) { while ( $posts->have_posts() ) { $posts->the_post(); global $post; ?> <li id="su-post-<?php the_ID(); ?>" class="su-post"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php } } // Posts not found else { ?> <li><?php _e( 'Posts not found', 'shortcodes-ultimate' ) ?></li> <?php } ?> </ul>
SAVE
CANCEL