Title: WP Over Network
Author: yuka2py
Published: <strong>জুলাই 7, 2013</strong>
Last modified: জুলাই 28, 2013

---

প্লাগিনৰ সন্ধান কৰক

![](https://ps.w.org/wp-over-network/assets/banner-772x250.png?rev=737537)

This plugin **hasn’t been tested with the latest 3 major releases of WordPress**.
It may no longer be maintained or supported and may have compatibility issues when
used with more recent versions of WordPress.

![](https://s.w.org/plugins/geopattern-icon/wp-over-network_3da6a6.svg)

# WP Over Network

 [yuka2py](https://profiles.wordpress.org/yuka2py/)-ৰ দ্বাৰা

[ডাউনল’ড কৰক](https://downloads.wordpress.org/plugin/wp-over-network.0.4.4.zip)

 * [বিশদ বিৱৰণ](https://as.wordpress.org/plugins/wp-over-network/#description)
 * [পৰ্য্যালোচনা](https://as.wordpress.org/plugins/wp-over-network/#reviews)
 *  [ইনষ্টলেশ্যন](https://as.wordpress.org/plugins/wp-over-network/#installation)
 * [বিকাশ](https://as.wordpress.org/plugins/wp-over-network/#developers)

 [সাহায্য](https://wordpress.org/support/plugin/wp-over-network/)

## বৰ্ণনা

Add ability to get posts from over your network sites. Supports widget, shortcode,
and customizable original function.

Use the following:

#### In template

    ```
    <?php 

    get_header();
    the_post();

    ?>
    <section id="content-primary">
            <header id="page-header">
                    <h1><?php the_title() ?></h1>
            </header>
    <?php

    // Getting recent posts the page and post, minus the host blog.
    // Specify the "affect_wp_query = true", for using the wp_pagenavi.
    $posts = wponw::get_posts('exclude_blog_ids=1&post_type=post,page&affect_wp_query=true');

    wp_pagenavi();

    ?>
    <?php if ( ! empty ( $posts ) ) : ?>
            <section class="post-list">
    <?php
            foreach ( $posts as $post ) :
                    wponw::setup_blog_and_postdata( $post );
    ?>
                    <section id="post-<?php the_ID() ?>" <?php post_class() ?>>
                            <h2>【<?php echo $post->blog_name ?>】</h2>
                            <h1><a href="<?php the_permalink() ?>"><?php the_title() ?></a></h1>
                            <?php echo get_the_excerpt() ?>
                    </section>
    <?php
                    wponw::restore_blog_and_postdata();
            endforeach;
    ?>
            </section>
    <?php else : ?>
            <p>Sorry, there is no post.</p>
    <?php endif; # End of empty( $posts ) ?>

    </section>
    <?php

    wp_reset_query();
    get_sidebar();
    get_footer();
    ```

#### Using as Shortcode

**Display with default.**

    ```
    [wponw_recent_post_list]
    ```

Arguments, can be used the same as `wponw::render_post_archive_to_string`.

**Use your template file, includes 3 post types**

    ```
    [wponw_recent_post_list numberposts=8 post_type=products,promotions,information template=TemplateFileNameInYourTheme]
    ```

NOTICE: DON’T include the file extension in TemplateFileNameInYourTheme.

**If you want to use your own rendering function.**

    ```
    [wponw_recent_post_list numberposts=5 post_type=products renderer=YourRenderFunction]
    ```

**To create an archive page with a page.**

You create the new page, and write the below shortcode in the post content.

    ```
    [wponw_recent_post_list post_type=post exclude_blog_ids=1 affect_wp_query=true]
    ```

### Contact

@yuka2py on twitter

## স্ক্ৰীনশ্বট

[⌊Widget setting.⌉⌊Widget setting.⌉[

Widget setting.

[⌊Widget on front site.⌉⌊Widget on front site.⌉[

Widget on front site.

## ইনষ্টলেশ্যন

 1. Upload `wp_orver_network` to the `/wp-content/plugins/` directory
 2. Activate the plugin through the ‘Plugins’ menu in WordPress
 3. using in your template or shortcode or widget.

## সঘনাই উত্থাপিত প্ৰশ্ন

None currently.

## পৰ্য্যালোচনা

![](https://secure.gravatar.com/avatar/387e3f68b311cffdfaf7a6fe44fd83b9313a2f83a9deae52ec61b34482e65977?
s=60&d=retro&r=g)

### 󠀁[Essential for multisite directories](https://wordpress.org/support/topic/essential-for-multisite-directories/)󠁿

 [ariel29](https://profiles.wordpress.org/ariel29/) আগষ্ট 9, 2017

It was easy to install and implement and is able to display the latest information
on all the blogs.

 [ আটাই 2টা পৰ্য্যালোচনা পঢ়ক ](https://wordpress.org/support/plugin/wp-over-network/reviews/)

## অৱদানকাৰী আৰু বিকাশকাৰীসকল

“WP Over Network” হৈছে মুক্ত উৎসৰ ছফ্টৱেৰ। এইসকল লোকে এই প্লাগিনত অৱদান আগবঢ়াইছে।

অৱদানকাৰীসকল

 *   [ yuka2py ](https://profiles.wordpress.org/yuka2py/)
 *   [ Takuro Hishikawa ](https://profiles.wordpress.org/hissy/)

[আপোনাৰ ভাষাত “WP Over Network” অনুবাদ কৰক।](https://translate.wordpress.org/projects/wp-plugins/wp-over-network)

### বিকাশৰ প্ৰতি আগ্ৰহী?

[ক’ড ব্ৰাউজ কৰক](https://plugins.trac.wordpress.org/browser/wp-over-network/), [SVN ৰিপজিটৰী](https://plugins.svn.wordpress.org/wp-over-network/)
চাওক নাইবা [RSS](https://plugins.trac.wordpress.org/log/wp-over-network/?limit=100&mode=stop_on_copy&format=rss)-
দ্বাৰা [বিকাশৰ পঞ্জী](https://plugins.trac.wordpress.org/log/wp-over-network/) ছাবস্ক্ৰাইব
কৰক।

## সলনি-পঞ্জী

#### 0.4.4

 * Fixed a bugs on the child site.

#### 0.4.3

 * Added the shortcode of `wponw_reset_query` and `wponw_post_list`.
 * Deprecated the `wponw_recent_post_list`. Please use the `wponw_post_list` instead.

#### 0.4.2

 * Added settings to widget
 * Bug fix

#### 0.3.1.x

 * Update document. and Fixed a mistake in the readme.

#### 0.3.0.0

 * Supports internationalization.

#### 0.2.1.1

 * Fixed bugs on shortcode.

#### 0.2.1.0

 * Shortcode added. and fixed bugs.

#### 0.1.13.0

 * Widget added. Fixed a problem of the use of Transient API. Change the class names.

## মেটা

 *  **0.4.4** সংস্কৰণ
 *  **13 বছৰ আগত** শেষবাৰ আপডে’ট হৈছিল
 *  সক্ৰিয় ইনষ্টলেশ্যন **80+**
 *  WordPress-ৰ সংস্কৰণ ** 3.5 বা তাতকৈ ওপৰৰ **
 *  ইমানলৈকে পৰীক্ষা কৰা হৈছে **3.5.2**
 *  ভাষা
 * [English (US)](https://wordpress.org/plugins/wp-over-network/)
 * [Blogs](https://as.wordpress.org/plugins/tags/blogs/)[multisite](https://as.wordpress.org/plugins/tags/multisite/)
   [network](https://as.wordpress.org/plugins/tags/network/)[posts](https://as.wordpress.org/plugins/tags/posts/)
 *  টেগবোৰ
 *  [উচ্চখাপৰ ভিউ](https://as.wordpress.org/plugins/wp-over-network/advanced/)

## ৰে’টিংবোৰ

 5টাৰ ভিতৰত 5টা তৰা।

 *  [  2 5-star reviews     ](https://wordpress.org/support/plugin/wp-over-network/reviews/?filter=5)
 *  [  0 4-star reviews     ](https://wordpress.org/support/plugin/wp-over-network/reviews/?filter=4)
 *  [  0 3-star reviews     ](https://wordpress.org/support/plugin/wp-over-network/reviews/?filter=3)
 *  [  0 2-star reviews     ](https://wordpress.org/support/plugin/wp-over-network/reviews/?filter=2)
 *  [  0 1-star reviews     ](https://wordpress.org/support/plugin/wp-over-network/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/wp-over-network/reviews/#new-post)

[সকলো পৰ্য্যালোচনা চাওক](https://wordpress.org/support/plugin/wp-over-network/reviews/)

## অৱদানকাৰীসকল

 *   [ yuka2py ](https://profiles.wordpress.org/yuka2py/)
 *   [ Takuro Hishikawa ](https://profiles.wordpress.org/hissy/)

## সাহায্য

কিবা ক’বলগীয়া আছে? সহায় লাগে?

 [সাহায্যৰ ফ’ৰাম চাওক](https://wordpress.org/support/plugin/wp-over-network/)

## দান কৰক

আপুনি এই প্লাগিনৰ উন্নতিৰ প্ৰতি সাহায্য আগবঢ়াব বিচাৰেনে?

 [ এই প্লাগিনক অনুদান দিয়ক ](http://None%20currently.)