If you turn on WP_DEBUG and find this error: Notice: The called constructor method for WP_Widget in ... [More]
Fix PHP error “Methods with same name as their class will not be constructors”
From this: class WP_Widget_Simple_Image extends WP_Widget { function WP_Widget_Simple_Image() ... [More]
Fix create_function() deprecated PHP function in WordPress
If you turn on WP_DEBUG, you may find an error like this: Deprecated: Function create_function() is ... [More]
Fix each() deprecated PHP function in WordPress
From this: while($dir=each($handle)) { to this: foreach($handle as $dir) { Warning: Please ... [More]
How to connect to sFTP in FileZilla
Using sFTP credentials, I could not log into a secure server in FileZilla. Turns out, I needed to ... [More]
HTML5 Video
WP has a video shortcode you can used to add an .mp4 video to your website. However, I couldn't find ... [More]
Styling parent menu item when hovering on submenu item
Reference ... [More]
Add Favicon
The favicon shows up on the tab. In some browsers like Chrome and Firefox, the favicon does not ... [More]