Title: P2P Slides
Author: chrisguitarguy
Published: <strong>22. 9. 2012</strong>
Last modified: 22. 9. 2012

---

Prohledat pluginy

Plugin **nebyl testován na 3 nejnovějších verzích WordPressu.** Nemusí už být tedy
podporován a u novějších verzí WordPressu může mít problémy s kompatibilitou a může
být nestabilní.

![](https://s.w.org/plugins/geopattern-icon/p2p-slides.svg)

# P2P Slides

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

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

 * [Podrobnosti](https://cs.wordpress.org/plugins/p2p-slides/#description)
 * [Hodnocení](https://cs.wordpress.org/plugins/p2p-slides/#reviews)
 *  [Instalace](https://cs.wordpress.org/plugins/p2p-slides/#installation)
 * [Vývojáři](https://cs.wordpress.org/plugins/p2p-slides/#developers)

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

## Popis

**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.

## Snímky obrazovky

 * [[
 * The meta box.

## Instalace

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.

## Nejčastější dotazy

  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.

## Recenze

Pro tento plugin nejsou žádné recenze.

## Autoři

P2P Slides je otevřený software. Následující lidé přispěli k vývoji tohoto pluginu.

Spolupracovníci

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

[Přeložte “P2P Slides” do svého jazyka.](https://translate.wordpress.org/projects/wp-plugins/p2p-slides)

### Zajímá vás vývoj?

[Prohledejte kód](https://plugins.trac.wordpress.org/browser/p2p-slides/), podívejte
se do [SVN repozitáře](https://plugins.svn.wordpress.org/p2p-slides/), nebo se přihlaste
k[ odběru protokolu vývoje](https://plugins.trac.wordpress.org/log/p2p-slides/) 
pomocí [RSS](https://plugins.trac.wordpress.org/log/p2p-slides/?limit=100&mode=stop_on_copy&format=rss).

## Přehled změn

#### 1.0

 * Initial version.

## Meta

 *  Verze **1.0**
 *  Poslední aktualizace **před 14 roky**
 *  Aktivních instalací **10+**
 *  Verze WordPressu ** 3.4.2 nebo novější **
 *  Testováno až do WordPressu **3.5.2**
 *  Jazyk
 * [English (US)](https://wordpress.org/plugins/p2p-slides/)
 * Štítky
 * [posts to posts](https://cs.wordpress.org/plugins/tags/posts-to-posts/)[slider](https://cs.wordpress.org/plugins/tags/slider/)
   [slides](https://cs.wordpress.org/plugins/tags/slides/)
 *  [Podrobnosti](https://cs.wordpress.org/plugins/p2p-slides/advanced/)

## Hodnocení

Zatím nebyly zadány žádné recenze.

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

[Zobrazit všechny recenze](https://wordpress.org/support/plugin/p2p-slides/reviews/)

## Spolupracovníci

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

## Podpora

Potřebujete pomoc?

 [Fórum podpory](https://wordpress.org/support/plugin/p2p-slides/)

## Dary

Chtěli byste podpořit vývoj tohoto pluginu?

 [ Přispět na tento plugin ](http://www.pwsausa.org/give.htm)