[Plugin: Latest Custom Post Type Updates] Add date?
-
Is it possible to add date to the latest custom post types widget. Now it only shows the post title if I’m correct.
I guess it should be added somewhere here in the index.php
// Get the posts! $posts = get_posts($params); // Print 'em out! if($posts) foreach($posts as $post) echo '<li><a href="'.get_permalink($post->ID).'" title="'.$post->post_title.'">'.$post->post_title.'</a></li>'; else { if($instance['empty_display']) echo '<li>'.$instance['empty_display'].'</li>'; } // Always remember your closing tags! echo '</ul>'.$after_widget; }
https://www.ads-software.com/extend/plugins/latest-custom-post-type-updates/
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘[Plugin: Latest Custom Post Type Updates] Add date?’ is closed to new replies.