WordPress Plugin – List Latest Posts Titles

Here is a latest plugin for WordPress, called Latest Posts Titles, that we have developed to bring all Titles of Latest Posts posted on a WordPress blog.

The requirement came when we are developing a theme for our site SearchAndhra.com, where in we need to display latest posts belongs to a specific category, in our home page and also in single post page. After checking various plugins available for WordPress we coded this plugin.

The main motive behind coding this plugin is to reduce number of queries fired against MySQL database, while listing titles of latest posts.

List Latest Posts Titles plugin uses only one query per call, to retrieve titles of latest posts belongs to a particular category.

You can download and install this List Latest Posts Titles plugin from WordPress Plugin Directory.

Post your comments if you require any further information regarding this plugin, we are ready to help you out.


7 Responses to “WordPress Plugin – List Latest Posts Titles”

  • 1 Valery Says:

    Hi :-)

    I have been looking for this plugin!!!! Cannot wait to use it!

    I added the plugin… and enabled it… but am unable to view it in the SETTINGS area — oh, and I have added a lot of plugins so I know how to do that part :-) Any suggestions?

    Thrive…

    Valery ~

  • 2 admin Says:

    As this plugin has no configurations to be made, it won’t appear in Settings.
    you can directly use this plugin with help of a function call as shown below in your theme pages.

    Ex: get_latest_posts(“News”);
    where News is category name from where titles of latest posts will be retrived.
    (or)
    get_latest_posts(“News”, 10); // this call will list latest 10 post titles

  • 3 Dan Says:

    Don’t you know that you are now out of the realm of the normal user and this is only for technically advanced people? You want us to manually edit theme pages? What does that mean and how do you do it?

    Hope you get the idea.

  • 4 chetanz Says:

    Hi Dan

    Thank you. you are right, this plugin is for technical people, who want to customize wordpress themes.

  • 5 parlenk Says:

    hi,

    how do i insert this to the main body of a theme? I mean between the header and the footer..where to start and where to end..thx

  • 6 parlenk Says:

    i want to insert it as div content, and i want to make all category list..
    (let say may categories are:news,money,game)

    so in the main body become like this:

    News:
    title post 1
    title post 2
    title post 3

    read more(link to news category page)

    Money:
    title post 1
    title post 2
    title post 3

    read more(link to money category page)

    Game:
    title post 1
    title post 2
    title post 3

    read more(link to game category page)

  • 7 admin Says:

    you can do it. call the plugin for each category separately.
    Presentation is up to you, whether you want to put in Div or Tabs etc….

Leave a Reply