Latest Song Lyrics & Captions
Find the perfect lyrics and captions for your favorite songs and social media posts
Browse Categories
'count',
'order' => 'DESC',
'number' => 8,
'exclude' => array(1) // Exclude uncategorized
));
foreach($categories as $category) {
echo '
';
echo '
';
}
?>
' . substr($category->name, 0, 1) . '
';
echo '' . $category->name . '
'; echo '' . $category->count . ' ' . ($category->count == 1 ? 'item' : 'items') . '
'; echo 'Recently Added
'post',
'posts_per_page' => 10,
'post_status' => 'publish'
);
$query = new WP_Query($args);
if($query->have_posts()) {
echo '
- ';
while($query->have_posts()) {
$query->the_post();
echo '
- ';
echo '
' . get_the_title() . '
'; // Post meta (category and date) echo ''; $categories = get_the_category(); if(!empty($categories)) { echo '' . esc_html($categories[0]->name) . ''; } echo '' . get_the_date() . ''; echo ''; echo ' ';
}
echo '
';
echo 'View All Posts';
echo '
';
wp_reset_postdata();
}
?>