Here’s the gas! And use this css: Taken from this page: http://www.dillerdesign.com/css/cookbook/links_pipes_list_elements.html
Search the Wiki
Create QR Codes For WordPress Posts
QR can be used by mobile devices to scan and get bits of data, they can even be used to display a web page. They are starting to become more and more popular the more mobile devices are being used. But creating your own QR codes can be difficult and if you want one for Full Article…
Secure WordPress Config File With htaccess
Your wp-config.php file stores all of your config variables for your WordPress site. If someone has access to this file they will be able to see your database username and password. When you first install WordPress there is a default wp-config-sample.php file which you need to rename and modify. To keep this secure you can Full Article…
Override a parent theme filter
Here is code frequently used to remove and replace a parent theme filter:
Password Protect & Custom Password Form 404
Taken from: http://tummel.me/wordpress-3-4-custom-password-form/ Are your password protected posts and pages broken since upgrading to WordPress 3.4? Here is a little tip for anyone out there who may be using a custom password form to protect individual pages and posts. WordPress has this functionality built into its core but it is possible to customize the wording and Full Article…
Remove wrapping div and ul from output of wp_nav_menu
Removing the wrapping div is easy. When you use wp_nav_menu(), add this argument: ‘container’ => false For the <ul> element, there’s an argument called ‘items_wrap’. This will remove the ul: ‘items_wrap’ => ‘%3$s’ Otherwise this function will remove the div for you:
Gmail won’t load – Alternate URLs
If the problem still exists you can try to use alternative URL instead of gmail.com. Try these URLs before complaining that “my Gmail will not load.” Safe mode – http://mail.google.com/mail/?labs=0 Secure mode – https://mail.google.com/ Older version – http://mail.google.com/mail/?ui=1 Basic mode – http://mail.google.com/mail/?ui=html Mobile mode – http://mail.google.com/mail/?ui=mobile or http://m.gmail.com iPhone mode – http://mail.google.com/mail/x/gdlakb-/gp/ iGoogle gadget – http://www.google.com/ig/gmailmax “No browser checking” mode – http://mail.google.com/mail?nocheckbrowser
How to remove a parent theme template
Taken from here: http://wordpress.stackexchange.com/a/58081/13712