投稿のLISTの形態を変更する
今回の場合は、投稿のタイトルのみをLOOPで表示する。そのタイトルにはリンクを付けない
list-loop_notlink.php
<?php defined( ‘ABSPATH’ ) || exit; ?>
<?php
/**
* READ BEFORE EDITING!
*
* Do not edit templates in the plugin folder, since all your changes will be
* lost after the plugin update. Read the following article to learn how to
* change this template or create a custom one:
*
* https://getshortcodes.com/docs/posts/#built-in-templates
*/
?><ul class=”su-posts su-posts-list-loop <?php echo esc_attr( $atts[‘class’] ); ?>”>
<?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 <?php echo esc_attr( $atts[‘class_single’] ); ?>”><?php the_time( get_option( ‘date_format’ ) ); ?>_<?php the_time( get_option( ‘time_format’ ) ); ?> <?php the_title(); ?></li>
<?php
}
}
// Posts not found
else {
?>
<li><?php _e( ‘Posts not found’, ‘shortcodes-ultimate’ ) ?></li>
<?php
}
?>
</ul>
