Forum Replies Created

Viewing 4 replies - 16 through 19 (of 19 total)
  • if WP uses PHP to handle form uploads, then there may be a limit set in the PHP.INI file of some number of MB. Normal installations of PHP has this set at 8MB I believe. Your hosting provider should be able to increase this for larger files for you.

    Thread Starter cent

    (@cent)

    can anyone provide some more direction? Thanks!

    Thread Starter cent

    (@cent)

    Hi Moshu,

    That got me started a little. I want to be display all of the authors on a single page with the last 5 posts beneath each respective author.

    Here’s what I was able to pull together from other posts:

    <!--
    http://wordpress.org/support/topic/50007?replies=6
    //-->
    <?php
    global $wpdb;
    $authors = $wpdb->get_col("SELECT user_id FROM $wpdb->usermeta WHERE meta_key = 'wp_capabilities' AND meta_value REGEXP \"author|administrator\"");
    foreach($authors as $author) :
    query_posts("author=$author&showposts=1");
    if(have_posts()) the_post();
    ?>
    <h3>Latest post from <?php the_author(); ?></h3>
    <?php
    wp_get_archives('type=postbypost&limit=5&show_post_count=true');
    ?>
    Read all posts by <?php the_author_posts_link(); ?>
    <?php
    endif;
    endforeach;
    ?>

    However, it doesn’t work at all.

    Anyone have any ideas I can try?

    Thx
    Cent

    Forum: Fixing WordPress
    In reply to: WP vs. WPMU
    Thread Starter cent

    (@cent)

    Hi Ajd777,

    Thanks for replying. With WP, can you show all blog entries by a specific author on a web page? On my home page I’m going to list us all with the last 5 entries we each made. Do you know if thats possible?

    And then when you’re reading say, John’s 1/20/2007 entry, you can see a list of his other recent entries?

    Sorry if I am asking too many questions.

    thanks

Viewing 4 replies - 16 through 19 (of 19 total)