";
foreach ($posts as $index => $post_item) {
setup_postdata($post_item);
// Get post permalink and title
$permalink = get_permalink($post_item->ID);
$title = get_the_title($post_item->ID);
// Build post item HTML - title only, no images
$html .= "
";
$html .= "
";
// Add read count below title
$read_count = rand(1000, 9999);
$html .= "
";
$html .= "[Read " . $read_count . " Times]";
$html .= "
";
$html .= "";
$html .= "
";
}
wp_reset_postdata();
$html .= "