Title: Post Format Gallery Widget
Author: Eduardo Zulian
Published: <strong>10 de octubre de 2013</strong>
Last modified: 23 de octubre de 2013

---

Buscar plugins

Este plugin **no se ha probado con las últimas 3 versiones mayores de WordPress**.
Puede que ya no tenga soporte ni lo mantenga nadie, o puede que tenga problemas 
de compatibilidad cuando se usa con las versiones más recientes de WordPress.

![](https://s.w.org/plugins/geopattern-icon/post-format-gallery-widget.svg)

# Post Format Gallery Widget

 Por [Eduardo Zulian](https://profiles.wordpress.org/eduardozulian/)

[Descargar](https://downloads.wordpress.org/plugin/post-format-gallery-widget.1.1.zip)

 * [Detalles](https://es.wordpress.org/plugins/post-format-gallery-widget/#description)
 * [Valoraciones](https://es.wordpress.org/plugins/post-format-gallery-widget/#reviews)
 *  [Instalación](https://es.wordpress.org/plugins/post-format-gallery-widget/#installation)
 * [Desarrollo](https://es.wordpress.org/plugins/post-format-gallery-widget/#developers)

 [Soporte](https://wordpress.org/support/plugin/post-format-gallery-widget/)

## Descripción

The Post Format Gallery Widget plugin creates the possibility for you to display
images from your galleries inside posts saved under the format ‘Gallery’. You can
select the number of images to display, the size of these images, shuffle their 
orders, the target of links (image file, permalink to attachment, permalink to post
or maybe no linking), show captions and use one copy of the basic WordPress style
for galleries, which will allow you to set up easily a number of columns.

**Important**: your theme must support the [Gallery post format](https://codex.wordpress.org/Post_Formats#Adding_Theme_Support),
otherwise it won’t work.

## Instalación

 1. Upload `post-format-gallery-widget` directory to the `/wp-content/plugins/` directory
 2. Activate the plugin through the ‘Plugins’ menu in WordPress
 3. Go to ‘Widgets’ menu and drag it to your sidebar

## FAQ

  The widget only shows this message: «Your theme does not support the Gallery post
format. Please add this support so you can choose your posts.»

Yes, that’s it. You have to [enable support for the gallery post format](https://codex.wordpress.org/Post_Formats#Adding_Theme_Support)
on your theme. This plugin will only search for galleries inside a post saved under
the post format Gallery.

  Can I add / remove / change gallery classes?

Yes. Just use the `pfgw_gallery_classes` filter in your `functions.php` file:

    ```
    /**
     * Add a new class to the gallery container
     *
     * @param array $classes 
     */
    function mytheme_change_pfgw_classes( $classes ) {
        $classes[] = 'my-class';
        return $classes;
    }
    add_filter( 'pfgw_gallery_classes', 'mytheme_change_pfgw_classes' );
    ```

  Does it only work with posts? What about other post types?

The default type is `post`. However, you can use `pfgw_post_types` filter in your`
functions.php` file and then add or remove how many post types you wish. Just remember
that [your theme must support](https://codex.wordpress.org/Post_Formats#Adding_Post_Type_Support)
these post types as well.

    ```
    /**
     * Add another post type to our gallery query
     *
     * @param array $post_types The post types for the query 
     */
    function mytheme_add_post_types( $post_types ) {
        $post_types[] = 'page';
        return $post_types;
    }
    add_filter( 'pfgw_post_types', 'mytheme_add_post_types' );
    ```

## Reseñas

No hay valoraciones para este plugin.

## Colaboradores y desarrolladores

«Post Format Gallery Widget» es un software de código abierto. Las siguientes personas
han colaborado con este plugin.

Colaboradores

 *   [ Eduardo Zulian ](https://profiles.wordpress.org/eduardozulian/)

[Traduce «Post Format Gallery Widget» a tu idioma.](https://translate.wordpress.org/projects/wp-plugins/post-format-gallery-widget)

### ¿Interesado en el desarrollo?

[Revisa el código](https://plugins.trac.wordpress.org/browser/post-format-gallery-widget/),
echa un vistazo al [repositorio SVN](https://plugins.svn.wordpress.org/post-format-gallery-widget/)
o suscríbete al [registro de desarrollo](https://plugins.trac.wordpress.org/log/post-format-gallery-widget/)
por [RSS](https://plugins.trac.wordpress.org/log/post-format-gallery-widget/?limit=100&mode=stop_on_copy&format=rss).

## Registro de cambios

#### 1.1

 * Make style unique for our widget using class `.widget_post_format_gallery`

#### 1.0

 * First version.

## Meta

 *  Versión **1.1**
 *  Última actualización **hace 13 años**
 *  Instalaciones activas **20+**
 *  Versión de WordPress ** 3.6 o superior **
 *  Probado hasta **3.6.1**
 *  Idioma
 * [English (US)](https://wordpress.org/plugins/post-format-gallery-widget/)
 * Etiquetas:
 * [gallery](https://es.wordpress.org/plugins/tags/gallery/)[post format](https://es.wordpress.org/plugins/tags/post-format/)
   [sidebar](https://es.wordpress.org/plugins/tags/sidebar/)[widget](https://es.wordpress.org/plugins/tags/widget/)
 *  [Vista avanzada](https://es.wordpress.org/plugins/post-format-gallery-widget/advanced/)

## Valoraciones

Aún no se han enviado valoraciones.

[Tu valoración](https://wordpress.org/support/plugin/post-format-gallery-widget/reviews/#new-post)

[Ver todas las reseñas](https://wordpress.org/support/plugin/post-format-gallery-widget/reviews/)

## Colaboradores

 *   [ Eduardo Zulian ](https://profiles.wordpress.org/eduardozulian/)

## Soporte

¿Tienes algo que decir? ¿Necesitas ayuda?

 [Ver el foro de soporte](https://wordpress.org/support/plugin/post-format-gallery-widget/)

## Donar

¿Te gustaría apoyar el progreso de este plugin?

 [ Dona a este plugin ](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=H28V8F5PHSZHA)