이 플러그인은 최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다. 워드프레스의 좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 있을 수 있습니다.

AddFunc Adaptive Content

설명

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 (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 for more detail. Each function is a boolean and simply returns true or false.

스크린샷

  • Quicktags available in Text view.

  • This handy Help tip is easily at hand whenever you're editing content.

설치

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. 워드프레스의 ‘플러그인’ 메뉴에서 플러그인을 활성화하세요.
  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) 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.

후기

2016년 9월 3일
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.
모든 2 평가 읽기

기여자 & 개발자

“AddFunc Adaptive Content”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

자국어로 “AddFunc Adaptive Content”(을)를 번역하세요.

개발에 관심이 있으십니까?

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록RSS로 구독하세요.

변경이력

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