Description
This is a widget plugin that allow’s you to mix PHP and html code with mobile
support. Two text area’s are provided. The first is the standard โTitleโ.
The one named โCode:โ can mix PHP and html. Two checkboxes allow you to choose
before and/or after posts. No limit on the number of widgets.
WordPress version 3.4 and higher has defined a function called wp_is_mobile().
This can be used inside your code mix to perform certain actions if the
browser is mobile. Mobile support is via wp_is_mobile() function which returns
true if on a mobile browser. See the WordPress API for more information.
Dynamic title support means that you can name your widget using the title
field and not have it displayed in the output. This is useful to give
your widgets meaningful names so you don’t lose track of what is going
on with your widgets.
Two variables have been defined for use with Google Mobile Adsense:
$myMobileAdsenseCode;
$myMobileAdsenseSlot;
This widget requires some knowledge of PHP and HTML coding. Misuse could crash
your site or cause errors with Adsense.
Examples:
Output:
5
To use Google mobile adsense include the following in the โCode:โ area:
The plugin will take care of the rest. Another check is made to ensure
that wp_is_mobile is true inside the plugin and that the Google Adsense variable
has a value.
You can combine both regular and mobile adsense. Be careful.
The following snippet will either show mobile or regular ads depending on the
browswer used by the end-user.
< ?php
if ( !wp_is_mobile() ) {
echo '
(adsbygoogle = window.adsbygoogle || []).push({});
โ;}
else {
$myMobileAdsenseClient=’ca-mb-pub-xxxxxxxxxxxxโ;
$myMobileAdsenseSlot=’xxxxxxxxxxโ;
}?>
Ordered list:
- Support for the mixing of PHP and HTML
- Support for mobile browsers
- Support for Google Adsense including mobilie
- Includes โbefore postโ support
- Includes โafter postโ support
- No limit on the number of widgets
- Includes dynamic title support in sidebars
Unordered list:
- Support for the mixing of PHP and HTML
- Support for mobile browsers
- Support for Google adsense including mobile
- Includes support for โbefore postโ
- Includes support for โafter postโ
- No limit on the number of widgets
- Include dynamic title support in sidebars
Link to [WordPress](https://wordpress.org/ \โYour favorite software\โ) and one to [Markdown\’s Syntax Documentation][markdown syntax].
Screenshots
Installation
- Extract bytes-php-code.zip to the \โ/wp-content/plugins/\โ directory.
- Activate the plugin through the \โPlugins\โ menu in WordPress.
- Navigate to the widget\’s page to drag n drop a widget for use.
Reviews
There are no reviews for this plugin.
Contributors & Developers
“Byte's PHP Code Widget” is open source software. The following people have contributed to this plugin.
ContributorsTranslate “Byte's PHP Code Widget” into your language.
Interested in development?
Browse the code, check out the SVN repository, or subscribe to the development log by RSS.
Changelog
0.3
- Only display widget when there is output to theme.
0.2
- Fixed bug in after post. Was using wrong variables.
- Fixed bug where attempting to show โTitleโ twice.
- Fixed bug where mobile adsense slot was not correct.
0.1
- Initial release.