• can any one tell me how to extract recent blogs for I want to display that in the menu?
    like for archives i do this
    <h3><?php _e(‘Archives:’); ?></h3>
    <div class=”side”>
    <h4>By Month:</h4>

      <?php wp_get_archives(‘type=monthly’); ?>

    <h4>By Category:</h4>

      <?php wp_list_cats(); ?>

    </div>

Viewing 3 replies - 1 through 3 (of 3 total)
  • You mean recent posts ?
    http://mtdewvirus.com/wp-hacks/

    Thread Starter amitmohanty

    (@amitmohanty)

    yeah someway i figured that put , podz..it was very intuitive and wp is realy written very well. i only changed from “monthly” to “daily”..anyway ..have a look at here
    http://www.amitmohanty.com/blog
    u can see the archives there..but it is sorted in order of date..i want to publish the name of the blog instead of the date and also wants to control the no. of blog names appearing there..say i want only 7 recent entry name to come there..currently i am using this…
    <h3>Recent entry</h3>
    <div class=”side”>

      <?php wp_get_archives(‘type=daily’);?>

    </div>
    one more question is how the no of entries in each of the catagories get displayed..say i am having 4 entried in my introsepction catagory of the blog . how to i make it appear beside it in a bracket, say..

    Thread Starter amitmohanty

    (@amitmohanty)

    okay i am gettin the plugins..being anewbis had no idea about plugins..now gettin it..:)

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘extract recent blogs: PHP?????’ is closed to new replies.