Title: pappfer's Replies | WordPress.org

---

# pappfer

  [  ](https://wordpress.org/support/users/pappfer/)

 *   [Profile](https://wordpress.org/support/users/pappfer/)
 *   [Topics Started](https://wordpress.org/support/users/pappfer/topics/)
 *   [Replies Created](https://wordpress.org/support/users/pappfer/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/pappfer/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/pappfer/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/pappfer/engagements/)
 *   [Favorites](https://wordpress.org/support/users/pappfer/favorites/)

 Search replies:

## Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)

 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Restrictions when using multisite](https://wordpress.org/support/topic/restrictions-when-using-multisite/)
 *  Thread Starter [pappfer](https://wordpress.org/support/users/pappfer/)
 * (@pappfer)
 * [15 years, 4 months ago](https://wordpress.org/support/topic/restrictions-when-using-multisite/#post-1795594)
 * Any idea how to tell get_posts() (or another) function that which blog’s posts
   should it read?
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Restrictions when using multisite](https://wordpress.org/support/topic/restrictions-when-using-multisite/)
 *  Thread Starter [pappfer](https://wordpress.org/support/users/pappfer/)
 * (@pappfer)
 * [15 years, 4 months ago](https://wordpress.org/support/topic/restrictions-when-using-multisite/#post-1795565)
 * That’s what I did so far… But that’s what I don’t want to do anymore.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [External pages stopped working after updating to 3.0](https://wordpress.org/support/topic/external-pages-stopped-working-after-updating-to-30/)
 *  Thread Starter [pappfer](https://wordpress.org/support/users/pappfer/)
 * (@pappfer)
 * [15 years, 4 months ago](https://wordpress.org/support/topic/external-pages-stopped-working-after-updating-to-30/#post-1644999)
 * After a long-long time I figured out how to make it work when multisite is enabled
   in WordPress 3.
 *     ```
       define('WP_USE_THEMES', false);
       define('WP_INSTALLING', true);
       require('./blog/wp-load.php');
       ```
   
 * The 2nd line is really important, it doesn’t work without that. Now my question
   is how to tell get_posts() function that which blog’s posts should it read. So
   if I have multiple blog but I just want to get posts from one of them, how do
   I do it?
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Restrictions when using multisite](https://wordpress.org/support/topic/restrictions-when-using-multisite/)
 *  Thread Starter [pappfer](https://wordpress.org/support/users/pappfer/)
 * (@pappfer)
 * [15 years, 4 months ago](https://wordpress.org/support/topic/restrictions-when-using-multisite/#post-1795563)
 * Yeah, my editors saying that oembed is working fine. (it didn’t work for me in
   preview mode)
 * The other thing about the external page didn’t work, that link didn’t help. However
   after a longlong time I figured out how to make it work when multisite is enabled
   in WordPress 3.
 *     ```
       define('WP_USE_THEMES', false);
       define('WP_INSTALLING', true);
       require('./blog/wp-load.php');
       ```
   
 * The 2nd line is really important, it doesn’t work without that. Now my question
   is how to tell get_posts() function that which blog’s posts should it read. So
   if I have multiple blog but I just want to get posts from one of them, how do
   I do it?
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Restrictions when using multisite](https://wordpress.org/support/topic/restrictions-when-using-multisite/)
 *  Thread Starter [pappfer](https://wordpress.org/support/users/pappfer/)
 * (@pappfer)
 * [15 years, 4 months ago](https://wordpress.org/support/topic/restrictions-when-using-multisite/#post-1795303)
 * Thanks for your reply!
    As I wrote in my first post oembed doesn’t work. The 
   option in settings -> media is not there.
 * I’ll try the solution about external pages soon but I think I already tried that
   way, too…
    Basically I’ll try the code below (source: [http://codex.wordpress.org/Integrating_WordPress_with_Your_Website](http://codex.wordpress.org/Integrating_WordPress_with_Your_Website))
   but instead of including wp-blog-header.php I’ll try it with wp-load.php. Let’s
   see how it works.
 * <?php
    require(‘/the/path/to/your/wp-blog-header.php’); ?> <?php $posts = get_posts(‘
   numberposts=10&order=ASC&orderby=post_title’); foreach ($posts as $post) : start_wp();?
   > <?php the_date(); echo ““; ?> <?php the_title(); ?> <?php the_excerpt(); ?>
   <?php endforeach; ?>
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [External pages stopped working after updating to 3.0](https://wordpress.org/support/topic/external-pages-stopped-working-after-updating-to-30/)
 *  Thread Starter [pappfer](https://wordpress.org/support/users/pappfer/)
 * (@pappfer)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/external-pages-stopped-working-after-updating-to-30/#post-1644981)
 * Noone uses it like that? 🙂
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [External pages stopped working after updating to 3.0](https://wordpress.org/support/topic/external-pages-stopped-working-after-updating-to-30/)
 *  Thread Starter [pappfer](https://wordpress.org/support/users/pappfer/)
 * (@pappfer)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/external-pages-stopped-working-after-updating-to-30/#post-1644971)
 * Any ideas?
 * Noone uses external pages with WordPress 3.0? Or it works for everyone?
 * If you use WordPress 3 and have multisite enabled and use external pages please
   write here (or give a link) how because I still struggle with this.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Author Name Doesn't Show on External Page](https://wordpress.org/support/topic/author-name-doesnt-show-on-external-page/)
 *  [pappfer](https://wordpress.org/support/users/pappfer/)
 * (@pappfer)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/author-name-doesnt-show-on-external-page/#post-1645438)
 * Sorry I can’t help. But at least fetching posts works for you, even that doesn’t
   work for me: [http://wordpress.org/support/topic/external-pages-stopped-working-after-updating-to-30](http://wordpress.org/support/topic/external-pages-stopped-working-after-updating-to-30)
 * How did you do that? Do you have multisite enabled?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [External pages stopped working after updating to 3.0](https://wordpress.org/support/topic/external-pages-stopped-working-after-updating-to-30/)
 *  Thread Starter [pappfer](https://wordpress.org/support/users/pappfer/)
 * (@pappfer)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/external-pages-stopped-working-after-updating-to-30/#post-1644814)
 * Thanks for your reply but it won’t solve my problem.
 * I can make that PHP Notice disappear, it’s not a problem. The problem is that
   I get a blank page page when I load include wp-load.php and try to fetch my blog
   posts.
 * It worked great before the upgrade.

Viewing 9 replies - 1 through 9 (of 9 total)