Title: Some Suggestions
Last modified: August 21, 2016

---

# Some Suggestions

 *  [CliveSoulHeal](https://wordpress.org/support/users/clivesoulheal/)
 * (@clivesoulheal)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/some-suggestions-23/)
 * Very nice plugin thanks.
 * I’d like a tick box option that if ticked displays the current date (in the format
   you’ve specified) at the top of the list of updated pages/posts. So, this will
   allow a more immediate evaluation to be made in terms of how long ago a page 
   or post beneath this was updated.
 * I’d also like an option to display the date first. As the page title is of variable
   length then with the date given after the title you have the dates in variable
   places making it more difficult to integrate the dates ‘data’. If the date is
   displayed first then you’d have a left aligned list of dates with the title on
   the right. This would make it much easier to glance at and faster to spot what
   you are interested in.
 * [https://wordpress.org/plugins/recently-updated-pages/](https://wordpress.org/plugins/recently-updated-pages/)

Viewing 1 replies (of 1 total)

 *  Thread Starter [CliveSoulHeal](https://wordpress.org/support/users/clivesoulheal/)
 * (@clivesoulheal)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/some-suggestions-23/#post-4813229)
 * For date first (minus ‘on’) then the post title. Replace the following:
 *     ```
       if (!empty($pageList)) {
                       echo "<ul>";
                           foreach ($pageList as $obj) {
                               echo "<li class='page_item page-item-{$obj->ID}'><a href='{$obj->uri}' title='{$obj->post_title}'>{$obj->post_title}</a>";
       			if ($displayDate == 1) {
                                   echo " on " . date($dateFormat, strtotime($obj->post_modified));
                               }
                               echo "</li>";
                           }
                       echo "</ul>";
                   }
       ```
   
 * With
 *     ```
       if (!empty($pageList)) {
                       echo "<ul>";
                           foreach ($pageList as $obj) {
                               echo "<li class='page_item page-item-{$obj->ID}'>";
       			if ($displayDate == 1) {
                                   echo date($dateFormat, strtotime($obj->post_modified));
                               }
                               echo " - <a href='{$obj->uri}' title='{$obj->post_title}'>{$obj->post_title}</a>";
                               echo "</li>";
                           }
                       echo "</ul>";
                   }
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Some Suggestions’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/recently-updated-pages.svg)
 * [Recently Updated Pages](https://wordpress.org/plugins/recently-updated-pages/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/recently-updated-pages/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/recently-updated-pages/)
 * [Active Topics](https://wordpress.org/support/plugin/recently-updated-pages/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/recently-updated-pages/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/recently-updated-pages/reviews/)

 * 1 reply
 * 1 participant
 * Last reply from: [CliveSoulHeal](https://wordpress.org/support/users/clivesoulheal/)
 * Last activity: [12 years, 4 months ago](https://wordpress.org/support/topic/some-suggestions-23/#post-4813229)
 * Status: not resolved