Another form of a click counter... WP Click Info counts user clicks on all external links of your WordPress blog automatically. The counter methode does not need any annoying and irritating redirect Pages to count clicks on your external links. By default the Plugin sets optional all external links target="_blank" attribute and a nice Wiki [...]
05.22.2011
Categories: | 46 Comments
Another form of a click counter... WP Click Info counts user clicks on all external links of your WordPress blog automatically. The counter methode does not need any annoying and irritating redirect Pages to count clicks on your external links. By default the Plugin sets optional all external links target="_blank" attribute and a nice Wiki [...]
05.10.2011
Categories: Snippets | Add a Comment
Because I've nothing found to get the folder of the current active wordpress theme on web server' s filesystem I wrote my own from scratch called get_wp_theme_folder(); PHP Source code: function get_wp_theme_folder(){ $tmp = get_bloginfo("template_url"); $tmp = explode("wp-content/themes/",$tmp); $result = $tmp[1]; // Windows returns slashes in path strings. return str_replace("\\", "/", get_theme_root()."/".$result) ; }
01.02.2011
topvotes.appspot.com A few month ago we startet a new voting service called topvotes. The service has lots of potential and could process much more requests. For this reason, we would like to draw your attention to this free website voting service. The Service is available for all Wabsites. Especially for WordPress blogs, it is easy to use the service. The plugin can be [...]
09.04.2010
Categories: free | Add a Comment
Nice website voting service. Easy to implement. Just try it. Includes a lightweight WordPress Plugin.
09.04.2010
Categories: | Add a Comment
This Plugin allows your visitors to vote for your website. It is easy to integrate the widget into your web pages. The Plugin is using a service called topvotes.appspot.com which is powered by Google App Engine. There is no programming or HTML knowledge required to implement this voting widget into your page. The topvotes.appspot.com service provides [...]
08.12.2010
Categories: | 20 Comments
Another form of keyword tagging... Description Installation FAQ Screenshots Changelog Stats More Information: seomoz.org: Use “other users found this document for” How to increasing Number of Visitors – Good SEO article Feel free to send me your translation to webmaster at saquery.com to share your work with the WordPress comunity! If you think this [...]
07.22.2010
Categories: english | Add a Comment
This sample shows a good and well structured way to code your own WordPress Plugin in PHP. <?php /* Plugin Name: Your plugin-name Plugin URI: http://www.example.com Description: Your description. Version: 1.0.0.0 Author: Your name Author URI: http://www.example.com */ global $myWordpressPlugin; $myWordpressPlugin = new myWordpressPlugin(); class myWordpressPlugin{ function wp_head(){ echo '<!-- test -->'."\n"; } } add_action('wp_head', [...]
07.21.2010
Categories: | 3 Comments
A JQuery WordPress Plugin: This WordPress Plugin provides a very easy way to load jQuery and jQuery UI with the basic CSS theme layout from Google CDN without using your traffic. It turns your blog into a full featured JQuery and JQuery UI WordPress blog. Javascript example Code: function invokeDemo(){ $(this).parents('div:first').animate({ width: ['toggle', 'swing'], height: ['toggle', [...]