Title: AddFunc Adaptive Content
Author: Joe Rhoney
Published: <strong>Setyembre 18, 2015</strong>
Last modified: Disyembre 11, 2018

---

Search plugins

![](https://ps.w.org/addfunc-adaptive-content/assets/banner-772x250.jpg?rev=1248884)

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/addfunc-adaptive-content/assets/icon.svg?rev=1248884)

# AddFunc Adaptive Content

 By [Joe Rhoney](https://profiles.wordpress.org/joerhoney/)

[Download](https://downloads.wordpress.org/plugin/addfunc-adaptive-content.2.0.zip)

 * [Details](https://ceb.wordpress.org/plugins/addfunc-adaptive-content/#description)
 * [Reviews](https://ceb.wordpress.org/plugins/addfunc-adaptive-content/#reviews)
 *  [Installation](https://ceb.wordpress.org/plugins/addfunc-adaptive-content/#installation)
 * [Development](https://ceb.wordpress.org/plugins/addfunc-adaptive-content/#developers)

 [Support](https://wordpress.org/support/plugin/addfunc-adaptive-content/)

## Description

With all of the new web enabled devices springing up in the market and with the 
wide range of screen sizes and data transfer speeds, a website can no longer serve
the same content upon every request (not without some degree of limitation and/or
traffic-loss).

This lightweight plugin lets content writers and theme authors choose when WordPress
should or shouldn’t show any give content item using shortcodes and quicktags or
theme elements using functions. It uses [Mobile Detect](http://mobiledetect.net/)(
a PHP script) to identify the website visitor’s device as either mobile, tablet 
or desktop, enabling you to allow or disallow content to be output. Use it to prevent
large files such as images from outputting to devices that generally have a lower
data transfer speed available to them (e.g. mobile devices). Serve more extensive
copy and more elaborate userinterfaces to desktop devices and laptops. Target tablets
to market a tablet oriented product or service. You can also detect iOS, iPhone,
iPad, Android OS and Windows Mobile OS.

Example of a shortcode: [notmobile]Write anything you want between these two tags
and WordPress will only output it when the visitor is viewing your website with 
a desktop/laptop or tablet and not with a mobile device.[/notmobile]

Easily add these shortcodes using the Quicktags in Text view.

All shortcodes also exist as functions (prefixed with aFAC_ for namespacing), which
can be used in your theme as needed. See the [FAQs](https://wordpress.org/plugins/addfunc-adaptive-content/faq/)
for more detail. Each function is a boolean and simply returns true or false.

## Screenshots

 * [[
 * Quicktags available in Text view.
 * [[
 * This handy Help tip is easily at hand whenever you’re editing content.

## Installation

This section describes how to install the plugin and get it working.

e.g.

 1. Upload the `addfunc-adaptive-content` folder to the `/wp-content/plugins/` directory
 2. Activate the plugin through the ‘Plugins’ menu in WordPress
 3. Start using the shortcodes in your content and/or the functions in your theme

## FAQ

  What shortcodes are available with AddFunc Adaptive Content?

All available shortcodes are documented in the Help tab under “Adaptive Content”(
on the content editing page).

  What functions are available with AddFunc Adaptive Content?

 * aFAC_mobileonly() — Returns true only when device is mobile (and not tablet)
 * aFAC_notmobile() — Returns true only when device is not mobile (or is tablet)
 * aFAC_tabletonly() — Returns true only when device is tablet
 * aFAC_nottablet() — Returns true only when device is not tablet
 * aFAC_desktoponly() — Returns true only when device is not mobile (and not tablet)
 * aFAC_notdesktop() — Returns true only when device is mobile (or is tablet)
 * aFAC_iosonly() — Returns true only when device is iOS
 * aFAC_iphoneonly() — Returns true only when device is iPhone
 * aFAC_ipadonly() — Returns true only when device is iPad
 * aFAC_androidonly() — Returns true only when device is Android OS
 * aFAC_windowsmobileonly() — Returns true only when device is Windows Mobile OS

  Does AddFunc Adaptive Content rely on JavaScript for anything?

To use the Quicktags you must have your JavaScript enabled. Other than that, nope.

  Does AddFunc Adaptive Content rely on PHP for anything?

Yep.

  Does AddFunc Adaptive Content work by browser sniffing?

Yes. That is what it’s base script ([Mobile_Detect.php](http://mobiledetect.net/))
is designed for and it does the job well.

  Wouldn’t a JavaScript solution be more reliable?

Can I get a statistic? It really depends on how often you get visitors who have 
javascript turned off and whether you can do without them. Likewise, I suppose, 
it depends on whether many of your visitors withhold their browser and system data
when requesting your website. Neither of these are very common, but they both happen.

  Wouldn’t a JavaScript solution be faster?

Not likely. PHP generally runs very fast on web servers, and with JavaScript the
you’re relying on the speed of your visitors system. Beside that, the point of this
plugin is to serve the right content to the right devices, and only that. If you
have to load a Javascript to detect the device before loading the rest of the page,
that’s an additional script served and another query to your server would be necessary,
when here we’re trying to minimize data transfer. Plus, waiting until your visitor’s
machine has finish running a script before you can serve up the entire page isn’t
as efficient as catching the device and OS specs when they first come to you automatically
and thusly knowing what to serve up right from the start of the initial query.

  Wouldn’t it be better to serve up images at an appropriate size based on the screen
size or image area width, rather than the device type?

Yes. That’s quite a trick and we would love to see someone develop a plugin which
makes that easy. I haven’t found one yet.

## Reviews

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

### 󠀁[PREFECT functionality for responsive webdesigns !!!](https://wordpress.org/support/topic/prefect-functionality-for-responsive-webdesigns/)󠁿

 [Hansjörg Jäckel](https://profiles.wordpress.org/hansjoergjaeckel/) Setyembre 3,
2016 1 reply

Hi Developerteam, Thanks very much for your great & excellent work. It’s very helpful
to hide content for responsive webdesigns! Please maintain this powerful & functional
WP-Plugin also in the future … Best regards

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

### 󠀁[Built for user-friendliness](https://wordpress.org/support/topic/built-for-user-friendliness/)󠁿

 [Joe Rhoney](https://profiles.wordpress.org/joerhoney/) Setyembre 3, 2016

I built this plugin from the WP Mobile Detect plugin, which pretty much did the 
same thing, but has slightly different shortcodes. WP Mobile Detect had a problem
I needed handled. I fixed the problem, modified the shortcodes to what I think make
more sense and added a Help tab for quick and easy reference. Then I decided I should
share it with everyone. I hope you’ll find it as invaluable as I do! Thanks to Jesse
Friedman for the authorship of this plugin’s predecessor, WP Mobile Detect.

 [ Read all 2 reviews ](https://wordpress.org/support/plugin/addfunc-adaptive-content/reviews/)

## Contributors & Developers

“AddFunc Adaptive Content” is open source software. The following people have contributed
to this plugin.

Contributors

 *   [ Joe Rhoney ](https://profiles.wordpress.org/joerhoney/)
 *   [ AddFunc ](https://profiles.wordpress.org/addfunc/)

[Translate “AddFunc Adaptive Content” into your language.](https://translate.wordpress.org/projects/wp-plugins/addfunc-adaptive-content)

### Interested in development?

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

## Changelog

#### 2.0

Feb-2016

 * Adds Quicktags
 * Includes updated Mobile_Detect.php to the latest stable release (2.8.19)

#### 1.0

Sep-2015

 * Includes updated Mobile_Detect.php to the latest stable release (2.8.16)
 * Includes updated readme.txt (hereafter goes without mention)
 * Submitted to WordPress repository

#### 0.1.2.0

Apr-2015

 * Repurposed WP Mobile Detect as AddFunc Adaptive Content, to alter the shortcodes
   and to reinstate maintenance of this valuable plugin

## Meta

 *  Version **2.0**
 *  Last updated **7 tuig ago**
 *  Active installations **50+**
 *  WordPress version ** 3.0.1 or higher **
 *  Tested up to **5.0.25**
 *  Language
 * [English (US)](https://wordpress.org/plugins/addfunc-adaptive-content/)
 * Tags
 * [adaptive](https://ceb.wordpress.org/plugins/tags/adaptive/)[adaptive content](https://ceb.wordpress.org/plugins/tags/adaptive-content/)
 *  [Advanced View](https://ceb.wordpress.org/plugins/addfunc-adaptive-content/advanced/)

## Ratings

 5 out of 5 stars.

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

[Your review](https://wordpress.org/support/plugin/addfunc-adaptive-content/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/addfunc-adaptive-content/reviews/)

## Contributors

 *   [ Joe Rhoney ](https://profiles.wordpress.org/joerhoney/)
 *   [ AddFunc ](https://profiles.wordpress.org/addfunc/)

## Support

Got something to say? Need help?

 [View support forum](https://wordpress.org/support/plugin/addfunc-adaptive-content/)

## Donate

Would you like to support the advancement of this plugin?

 [ Donate to this plugin ](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=7AF7P3TFKQ2C2)