Are you looking for the best WordPress search plugin to improve your website’s search functionality? The default WordPress search is quite limited. It often delivers inaccurate results, lacks filtering, and doesn’t support instant suggestions — all of which can frustrate your visitors and lead to missed opportunities. In this post, we’ve handpicked the 10 best […]
get post publish date outside the loop in wordpress
To get post publish date outside the loop in wordpress use the following code. [php] $all_posts = get_posts(array(‘numberposts’=>-1, ‘post_status’=> ‘publish’)); //Get all published posts foreach ($all_posts as $single_post){ echo get_the_time(‘Y-m-d’, $single_post->ID); //The date is on Y-m-d format echo ‘<br />’ ; } [/php] Hope this code will help you. Thanks