Title: P2P Slides
Author: chrisguitarguy
Published: <strong>22, Setiembre de 2012</strong>
Last modified: 22, Setiembre de 2012

---

Guetar plugins

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/p2p-slides.svg)

# P2P Slides

 By [chrisguitarguy](https://profiles.wordpress.org/chrisguitarguy/)

[Download](https://downloads.wordpress.org/plugin/p2p-slides.1.0.zip)

 * [Details](https://ast.wordpress.org/plugins/p2p-slides/#description)
 * [Reviews](https://ast.wordpress.org/plugins/p2p-slides/#reviews)
 *  [Installation](https://ast.wordpress.org/plugins/p2p-slides/#installation)
 * [Development](https://ast.wordpress.org/plugins/p2p-slides/#developers)

 [Support](https://wordpress.org/support/plugin/p2p-slides/)

## Description

**Note:** This plugin requires [Posts 2 Posts](https://wordpress.org/extend/plugins/posts-to-posts/)

Allows you to associate a custom post type (“slides”) with any of your other post

types (defaults to “pages”). This is useful for theme developers of those that want
to add custom sliders around your theme.

This plugin does not provide you out of the box front end functionality. If you’re

looking for a drop in and play slider, this isn’t it.

## Screenshots

 * [[
 * The meta box.

## Installation

First, install and active [Posts 2 Posts](https://wordpress.org/extend/plugins/posts-to-posts/).

Then, use the WordPress installer to install this plugin or …

 1. Click the big orrange button to download the plugin
 2. Unzip the plugin files
 3. Upload the `p2p-slides` folder to your `/wp-content/plugins/` directory
 4. Activate the plugin in the admin area

After installing, you should see a new meta box on your edit screen for pages.

If you wish to modify what post types get associated with slides, simply hook
 into`
after_setup_theme` and add theme support for `p2p-slides`.

    ```
    <?php
    add_action('after_setup_theme', 'my_special_setup');
    function my_special_setup()
    {
        // this is the same as just having the plugin installed
        add_theme_support('p2p-slides');

        add_theme_support('p2p-slides', array('a-post-type', 'another-post-type'));
    }
    ```

To use the slides, you’ll need to check the `slides` property of each `$post`.

    ```
    <?php
    // start the loop as normal
    while(have_posts()): the_post();
    ?>

        <?php if($post->slides): ?>
            We have slides! Loop through them.
            <?php foreach($post->slides as $slide): ?>
                Do stuff with $slide here, it's just a post object
            <?php endforeach; ?>
        <?php endif; ?>

    <?php endwhile; ?>
    ```

You can find a more complete example, in the form of a page template for `twentyeleven`
in the P2P Slides’ `inc` directory.

## FAQ

  Why no front end prettiness?

Because that’s a theme’s job. This plugin is only meant to provide you with
 tools
to extend your theme or child theme.

  Is this Posts 2 Posts legit?

Yes. [Posts 2 Posts](https://wordpress.org/extend/plugins/posts-to-posts/)
 is amazing.

## Reviews

There are no reviews for this plugin.

## Contributors & Developers

“P2P Slides” is open source software. The following people have contributed to this
plugin.

Contributors

 *   [ chrisguitarguy ](https://profiles.wordpress.org/chrisguitarguy/)

[Translate “P2P Slides” into your language.](https://translate.wordpress.org/projects/wp-plugins/p2p-slides)

### Interested in development?

[Browse the code](https://plugins.trac.wordpress.org/browser/p2p-slides/), check
out the [SVN repository](https://plugins.svn.wordpress.org/p2p-slides/), or subscribe
to the [development log](https://plugins.trac.wordpress.org/log/p2p-slides/) by 
[RSS](https://plugins.trac.wordpress.org/log/p2p-slides/?limit=100&mode=stop_on_copy&format=rss).

## Changelog

#### 1.0

 * Initial version.

## Meta

 *  Version **1.0**
 *  Last updated **14 años ago**
 *  Active installations **10+**
 *  WordPress version ** 3.4.2 or higher **
 *  Tested up to **3.5.2**
 *  Language
 * [English (US)](https://wordpress.org/plugins/p2p-slides/)
 * Tags
 * [posts to posts](https://ast.wordpress.org/plugins/tags/posts-to-posts/)[slider](https://ast.wordpress.org/plugins/tags/slider/)
   [slides](https://ast.wordpress.org/plugins/tags/slides/)
 *  [Advanced View](https://ast.wordpress.org/plugins/p2p-slides/advanced/)

## Ratings

No reviews have been submitted yet.

[Your review](https://wordpress.org/support/plugin/p2p-slides/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/p2p-slides/reviews/)

## Contributors

 *   [ chrisguitarguy ](https://profiles.wordpress.org/chrisguitarguy/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/p2p-slides/)

## Donate

Would you like to support the advancement of this plugin?

 [ Donate to this plugin ](http://www.pwsausa.org/give.htm)