The MU forums have moved to WordPress.org

Disabling ALL Blogs From Showing? (3 posts)

  1. hhuskies
    Member
    Posted 16 years ago #

    On the home page of the blogging system, under the "Recently Updated Blogs" section, it lists EVERY blog. Is there any code I can add to this to allow only like the last 10 blogs or so?

    Thanks,

    Christian

  2. dsader
    Member
    Posted 16 years ago #

    Change home.php

    $blogs = get_last_updated();
    if( is_array( $blogs ) ) {
    ?>

    to this

    $blogs = get_last_updated();
    if( is_array( $blogs ) ) {
    	$blogs = array_slice($blogs, 0, 10);
    ?>
  3. hhuskies
    Member
    Posted 16 years ago #

    Thank you!

About this Topic

  • Started 16 years ago by hhuskies
  • Latest reply from hhuskies