IP Tools is a small collection of useful shortcodes, widgets, and classes related to IP addresses.
The IP Tools plugin provides a number of ways to control the content displayed
to the visitor depending on whether they have connected to the server
via IPv4 or IPv6.
IPv6 is slowly being adopted, and will eventually replace IPv4.
There is plenty of information on this topic on the internet —
on Wikipedia, for example.
Suggestions for more things to add to this tool box will be welcome.
Place these shortcodes in your posts and pages.
[ipt_address]
is replaced by the visitor’s IP address.[ipt_ipv6logo width=80px]
is replaced by an IPv6 logo (from the[ipt_ipv6only]...text...[/ipt_ipv6only]
displays the text only if IPv6 is in use.[ipt_ipv4only]...text...[/ipt_ipv4only]
displays the text only if IPv4 is in use.Other shortcodes can be nested within these last two.
Note that shortcodes can be used in text widgets, but only if the theme includes
the necessary filter.
If shortcodes in widgets are not working in your current theme,
you need to modify your WordPress theme and put the following
code into the “functions.php” file of the theme.
<?php add_filter('widget_text', 'do_shortcode'); ?>
Thanks to the Lost in Code website for this tip.
IP Tools creates CSS which can be used to hide any HTML element depending on whether IPv4 or IPv6 is in use.
It defines classes ipt_ipv4only
and ipt_ipv6only
which basically do what they say: the element
with that class is modified with display: none
if the visitor’s IP address is in the other IP domain.
For example, if you included the following HTML in a page, post, or widget
only the relevant section of text would be displayed to the user.
<div class="ipt_ipv4only"> <p>You've come to this webpage via IPv4 -- that's <em>so</em> last century. </div> <div class="ipt_ipv6only"> <p>Well done! You're enjoying the modern wonders of IPv6. </div>
So far, IP Tools just provides one small widget called ‘IP Tools Address’ that displays the visitor’s IP address — something like
‘IPv4 address: 12.34.56.78’ or ‘IPv6 address: 2001:0db8:85a3:0000:0000:8a2e:0370:7334’.
The title of the widget can be changed from its default value of ‘IP Tools’.
Installation is very simple
.../wp-content/plugins/
),Then you can add shortcodes, widgets, and classes to your website: see the
Description section for details.
= 0.1.5
= 0.1.4