Title: Responsify WP
Author: stefanledin
Published: <strong>29. júlí, 2014</strong>
Last modified: 7. júní, 2018

---

Leita í viðbótum

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

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://ps.w.org/responsify-wp/assets/icon-256x256.png?rev=1209208)

# Responsify WP

 Höfundur: [stefanledin](https://profiles.wordpress.org/stefanledin/)

[Sækja](https://downloads.wordpress.org/plugin/responsify-wp.1.9.11.zip)

 * [Details](https://is.wordpress.org/plugins/responsify-wp/#description)
 * [Reviews](https://is.wordpress.org/plugins/responsify-wp/#reviews)
 *  [Installation](https://is.wordpress.org/plugins/responsify-wp/#installation)
 * [Development](https://is.wordpress.org/plugins/responsify-wp/#developers)

 [Aðstoð](https://wordpress.org/support/plugin/responsify-wp/)

## Lýsing

Responsify WP is the WordPress plugin that cares about responsive images.

### Möguleikar

 * Use `img` with srcset/sizes attributes.
 * …or the `picture` element.
 * Works with or without [Picturefill](http://scottjehl.github.io/picturefill/).
 * Supports high resolution images (retina).
 * Custom media queries.
 * Handpick which image sizes to use.
 * Responsive background images.

### 󠀁[Demo](https://www.youtube.com/watch?v=3ThYWO6vHKI&spfreload=10)󠁿

Responsify WP finds featured images and all images inside the content and makes 
them responsive.
 For example, you might have a template that looks like this:

    ```
    <article>
        <h1><?php the_title();?></h1>
        <?php the_content();?>
    </article>
    ```

That will output something like this:

    ```
    <article>
        <h1>Hello world</h1>
        <p>Lorem ipsum dolor sit amet...</p>
        <img src="large.jpg" alt="Image description">
    </article>
    ```

But once you have activated the plugin, it will look like this instead:

    ```
    <article>
        <h1>Hello world</h1>
        <p>Lorem ipsum dolor sit amet...</p>
        <img sizes="(min-width: 300px) 1024px, (min-width: 150x) 300px, 150px"
            srcset="thumbnail.jpg 150w,
            medium.jpg 300w,
            large.jpg 1024w"
            alt="Image description">
    </article>
    ```

You can also choose to use the `picture` element instead:

    ```
    <article>
        <h1>Hello world</h1>
        <p>Lorem ipsum dolor sit amet...</p>
        <picture>
            <source srcset="full-size.jpg" media="(min-width: 1024px)">
            <source srcset="large.jpg" media="(min-width: 300px)">
            <source srcset="medium.jpg" media="(min-width: 150px)">
            <img srcset="thumbnail.jpg" alt="Image description">
        </picture>
    </article>
    ```

It also works with high resolution (retina) images:

    ```
    <article>
        <h1>Hello world</h1>
        <p>Lorem ipsum dolor sit amet...</p>
        <picture>
            <source srcset="full-size.jpg" media="(min-width: 1024px)">
            <source srcset="large.jpg, large_retina.jpg 2x" media="(min-width: 300px)">
            <source srcset="medium.jpg, medium_retina.jpg 2x" media="(min-width: 150px)">
            <img srcset="thumbnail.jpg, thumbnail_retina.jpg 2x" alt="Image description">
        </picture>
    </article>
    ```

The different versions of the image in the examples above is in the standard `thumbnail`,`
medium`, `large` and `full` sizes.
 The **media queries** are based on the width
of the „previous“ image. Any **custom sizes** of the image will also be found and
used.

### Stillingar

You can **select which image sizes** that the plugin should use from the RWP settings
page.
 These settings can be overwritten from your templates.

    ```
    <?php

    // Using get_posts()
    $posts = get_posts( array(
        'post_type' => 'portfolio',
        'rwp_settings' => array(
            'sizes' => array('large', 'full')
        )
    ) );
    foreach( $posts as $post ) {
        // ...
    }

    // Using WP_Query()
    $query = new WP_Query( array(
        'category_name' => 'wordpress',
        'rwp_settings' => array(
            'sizes' => array('large', 'full')
        )
    ) );
    if ( $query->have_posts() ) {
        // ...
    }
    ?>
    ```

**Available settings:**

 * Select which image sizes to use.
 * Set/override attributes.
 * Set custom media queries.
 * Turn on/off retina.
 * Ignore image formats.

### Functions

RWP provides a number of functions that can generate responsive images in your templates.

Let’s say that you have the following markup for a very large header image:

    ```
    <header>
        <?php the_post_thumbnail( 'full' ); ?>
    </header>
    ```

As you probably know, `the_post_thumbnail()` will create a regular `<img>` tag with
the full-size image in this case.
 But you don’t want to send a big 1440px image
to a mobile device. This can easily be solved like this:

    ```
    <header>
        <?php
        $thumbnail_id = get_post_thumbnail_id( $post->ID );

        // Generate an <img> tag with srcset/sizes attributes.
        echo rwp_img( $thumbnail_id );

        // Generate a <picture> element
        echo rwp_picture( $thumbnail_id );
        ?>
    </header>
    ```

### Veffang

[http://responsifywp.com](http://responsifywp.com).

### Demo

[http://responsifywp.com/demo](http://responsifywp.com/demo).

### Documentation and examples

[https://github.com/stefanledin/responsify-wp](https://github.com/stefanledin/responsify-wp).

### Requirements

 * PHP 5.3

## Skjámyndir

 * [[
 * Select which filters that RWP should be applied on. Thumbnails (post_thumbnail_html)
   and content (the_content) is used by default.You can also select which markup
   pattern RWP should generate.
 * [[
 * [[
 * You can easily override the default media queries for each image size. You can
   specify different settings for different scenarios.
 * [[
 * [[

## Uppsetning

#### Using The WordPress Dashboard

 1. Navigate to the ‘Add New’ in the plugins dashboard
 2. Search for ‘Responsify WP’
 3. Click ‘Install Now’
 4. Activate the plugin on the Plugin dashboard

#### Uploading in WordPress Dashboard

 1. Navigate to the ‘Add New’ in the plugins dashboard
 2. Navigate to the ‘Upload’ area
 3. Select `responsify-wp.zip` from your computer
 4. Click ‘Install Now’
 5. Activate the plugin in the Plugin dashboard

#### Using FTP

 1. Download `responsify-wp.zip`
 2. Extract the `responsify-wp` directory to your computer
 3. Upload the `responsify-wp` directory to the `/wp-content/plugins/` directory
 4. Activate the plugin in the Plugin dashboard

## SOS

  Installation Instructions

#### Using The WordPress Dashboard

 1. Navigate to the ‘Add New’ in the plugins dashboard
 2. Search for ‘Responsify WP’
 3. Click ‘Install Now’
 4. Activate the plugin on the Plugin dashboard

#### Uploading in WordPress Dashboard

 1. Navigate to the ‘Add New’ in the plugins dashboard
 2. Navigate to the ‘Upload’ area
 3. Select `responsify-wp.zip` from your computer
 4. Click ‘Install Now’
 5. Activate the plugin in the Plugin dashboard

#### Using FTP

 1. Download `responsify-wp.zip`
 2. Extract the `responsify-wp` directory to your computer
 3. Upload the `responsify-wp` directory to the `/wp-content/plugins/` directory
 4. Activate the plugin in the Plugin dashboard

## Umsagnir

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

### 󠀁[Wow – Thank you!](https://wordpress.org/support/topic/wow-thank-you-6/)󠁿

 [Samuel Bauer](https://profiles.wordpress.org/samuelbauerpwp/) 12. apríl, 2018

I was looking for that for ages! Saved me hours on old themes :’D

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

### 󠀁[Fantastic](https://wordpress.org/support/topic/fantastic-1537/)󠁿

 [merlinulrich](https://profiles.wordpress.org/merlinulrich/) 31. júlí, 2017 1 reply

This Plugin accomplished, what all others failed to do: make my images responsive,
which was blocked by my theme’s developer (Grand Photography by Theemegoods). From
what I’ve seen, support is outstanding and doens’t leave anything to be desired.

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

### 󠀁[Perfect and long wanted](https://wordpress.org/support/topic/perfect-and-long-wanted/)󠁿

 [Alex Hall](https://profiles.wordpress.org/openhatch/) 21. janúar, 2017 1 reply

THANK YOU! This did indeed work, „plug-n-play.“

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

### 󠀁[Best plugin and more than perfect support](https://wordpress.org/support/topic/best-plugin-and-more-than-perfect-support/)󠁿

 [pincopallo](https://profiles.wordpress.org/pincopallo/) 3. september, 2016 1 reply

I had many problems and many of theese were because I’m not an informatic expert.
I received help for everyone of theese. The support team is very patient and helpfull
to solve every problem I had. I advice the plugin to averyone.

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

### 󠀁[Best Of Its Kind](https://wordpress.org/support/topic/best-of-its-kind-19/)󠁿

 [Anonymous User 14978628](https://profiles.wordpress.org/anonymized-14978628/) 
3. september, 2016 1 reply

I tried many different plugins before i found this one, and it’s easily the best
of the bunch. It allowed me to add srcset to all the images on my website which 
wasn’t done by default with my theme. As other reviewers have said, the plugin author
is very helpful and definitely lives up to the claim that Responsify WP cares about
responsive images!

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

### 󠀁[Still useful after WordPress 4.4 and SUPERB support!](https://wordpress.org/support/topic/still-useful-after-wordpress-44-and-superb-support/)󠁿

 [TheHungryGeek](https://profiles.wordpress.org/thehungrygeek/) 3. september, 2016
1 reply

The current Wordpress responsive image implementation only inserts srcsets for your
images when the aspect ratio differs by less than 0.002. If you wish to insert srcsets
where the images’ aspect ratios differ by greater than 0.002, this plugin is a must!
If you theme already creates a ton of image sizes and you don’t want to waste them
this plugin is for you. The rwp_add_filters filter with the included snippet in 
the documentation allows you to apply the srcsets to images used by other plugins
and widgets. Further, the author provides fantastic support on the forums – bugs
are fixed quick. This is a great plugin with great support!

 [ Skoða 19 umsagnir ](https://wordpress.org/support/plugin/responsify-wp/reviews/)

## Þátttakendur & höfundar

“Responsify WP&#8221 er opinn hugbúnaður. Eftirfarandi aðilar hafa lagt sitt af 
mörkum við smíði þessarar viðbótar.

Höfundar

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

[Translate “Responsify WP” into your language.](https://translate.wordpress.org/projects/wp-plugins/responsify-wp)

### Interested in development?

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

## Breytingarsaga

#### 1.9.11

 * Minor updates.

#### 1.9.10

 * Fix for the „E_NOTICE: Undefined index ‘full’“ error message. Thx to Jesse Norell!

#### 1.9.9

 * Fixed for the „E_WARNING: Illegal string offset ‘width’“ error message. Thx to
   John Gadbois!

#### 1.9.8

 * Renamed the Logger class to Responsify_WP_Logger. Thx to @victorsebrito!

#### 1.9.7

 * Fixed a bug in the Custom Media Queries interface.
 * Support for WordPress 4.7

#### 1.9.6

 * Critical PHP 5.3 bugfix

#### 1.9.5

 * Bugfix. All image sizes was used if the one inserted through the editor wasn’t
   selected by the user.

#### 1.9.4

 * Bugfix, Custom Media Queries.
 * Support for WordPress 4.4

#### 1.9.3

 * Updated the Picturefill polyfill to version 3.0.1.

#### 1.9.2

 * New feature: Debug mode. RWP adds an HTML comment with information about the 
   image.
 * Bugfix. Retina + specified image.
 * Bugfix. The rwp_edit_generated_element filter is applied when calling rwp_img()
   and rwp_picture().

#### 1.9.1

 * Bugfix for the custom media query interface in Safari.
 * The ability to deselect the full image size is back. (Accidentally removed in
   RWP 1.9)
 * Minor improvements.

#### 1.9.0

 * Introducing a brand new user interface for managing custom media queries for 
   the images.
 * New filter: rwp_edit_generated_element. It allows you to make changes to the 
   generated element before it’s inserted into the content.
 * Tested with WordPress 4.3 beta 3.
 * Improvements under the hood.

#### 1.8.0

 * Picture::create() has been replaced by rwp_img(), rwp_picture(), rwp_span(), 
   rwp_style() and rwp_attributes(). (Picture::create() will still work)
 * New filter: rwp_edit_attributes. It allows you to edit the attributes before 
   they are applied to the generated element.
 * Picturefill has been upgraded to version 2.3.1.
 * Bugfixes and improvements.
 * Tested with WordPress 4.2
 * Thanks to @mawosch for the help with this release.

#### 1.7.3

 * Picture::create(‘attributes’) works with custom settings now.
 * Bugfix: RWP should not be applied on RSS feeds.

#### 1.7.2

 * New: RWP will ignore images with the ‘rwp-not-responsive’ class.
 * Bugfixes.

#### 1.7.1

 * Bugfix. The $content_width variable in functions.php could make the generated
   markup to be slightly incorret.

#### 1.7.0

 * Works on featured images out of the box.
 * Apply RWP on custom content filters using the rwp_add_filters filter.
 * Support for high resolution (retina) images.
 * Picture::create(‘attributes’) returns only the generated attributes.

#### 1.6.5

 * Critical PHP 5.3 bugfix

#### 1.6.4

 * Bugfix. The default value of the sizes attribute didn’t work as expected in browsers
   with native support.
 * Minor bugfixes and improvements.
 * Added the ability to disable Picturefill.

#### 1.6.3

 * Updated Picturefill to version 2.2.0
 * Minor bugfixes
 * Tested with WordPress 4.1

#### 1.6.2

 * Added the ability to ignore image formats.
 * Bugfixes.

#### 1.6.1

 * Critical bugfix. If the picture element was selected before 1.6.0, it stopped
   working.

#### 1.6.0

 * RWP now supports the sizes/srcset attributes. It’s the new default markup pattern.
 * Bugfixes and improvements.

#### 1.5.2

 * Bugfix. Custom media queries works with the picture element now.

#### 1.5.1

 * All attributes on the original img tag are now preserved and passed on to the
   new element.
 * External images will be ignored.
 * Bugfixes
 * Thanks to habannah for all of her help with pointing out issues with RWP.

#### 1.5.0

 * Now it’s possible to select if you want to use span or the real picture element.
 * It’s also possible to only use the Picture::create() without replacing any img
   tags in the content.
 * Bugfixes.

#### 1.4.3

 * Bugfix. If an image is beeing inserted by a shortcode, the generated markup could
   be replaced.

#### 1.4.2

 * Bugfix. On PHP 5.3.28, the plugin could make the site crash. Not anymore!

#### 1.4.1

 * Bugfix. If an image doesn’t exists in a selected size, WordPress returns the 
   full size image instead. That would break the media queries.
 * Tested with WordPress 4 beta 2.
 * Improved documentation.

#### 1.4

 * Now it’s possible to set custom media queries.

#### 1.3

 * Settings can be passed in the query.

#### 1.2

 * The content filter now works on PHP 5.3

## Tækni

 *  Version **1.9.11**
 *  Last updated **8 ár síðan**
 *  Active installations **600+**
 *  WordPress version ** 3.8.1 or higher **
 *  Tested up to **4.9.29**
 *  Language
 * [English (US)](https://wordpress.org/plugins/responsify-wp/)
 * Tags
 * [picture](https://is.wordpress.org/plugins/tags/picture/)[picture element](https://is.wordpress.org/plugins/tags/picture-element/)
   [responsive images](https://is.wordpress.org/plugins/tags/responsive-images/)
   [sizes](https://is.wordpress.org/plugins/tags/sizes/)[srcset](https://is.wordpress.org/plugins/tags/srcset/)
 *  [Advanced View](https://is.wordpress.org/plugins/responsify-wp/advanced/)

## Einkunnir

 5 out of 5 stars.

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

[Add my review](https://wordpress.org/support/plugin/responsify-wp/reviews/#new-post)

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

## Höfundar

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

## Aðstoð

Eitthvað sem þú vilt segja? Þarftu hjálp?

 [Skoða hjálparspjallborð](https://wordpress.org/support/plugin/responsify-wp/)