Lyrics Index
‘posts_per_page’ => -1,
‘post_type’ => ‘post’,
‘post_status’ => ‘publish’,
‘orderby’ => ‘title’,
‘order’ => ‘ASC’
);
$the_query = new WP_Query($args);
?>
‘ ;
$i = 0 ;
while ( $the_query->have_posts() ) : $the_query->the_post();
$i++ ;
echo ‘
‘;
$permalink = get_permalink($post->ID);
$the_title = get_the_title($post->ID);
echo ‘
‘ . $the_title . ‘
‘ ;
echo ‘
‘;
endwhile;
echo ‘
‘ ;
// Reset Post Data
wp_reset_postdata();
?>
$permalink = get_permalink($post->ID);
$the_title = get_the_title($post->ID);
echo ‘
‘ ;
echo ‘
endwhile;
echo ‘
// Reset Post Data
wp_reset_postdata();
?>