Welcome to WP Beaches

WordPress Websites design specialists, based in the Northern Beaches, Sydney
Design, Develop, Host

RECENT POSTS

Get PHP and Shortcode to Work in WordPress Widgets

Getting PHP Working in Widgets By default any PHP code won’t execute in WordPress widgets or sidebars, you can probably get by with a plugin but you can also add a function in your themes function.php file to allow PHP to run, what you need to declare is a custom function and filter. //Allow PHP to…

Remove HTML Tags and Attributes in WordPress Comments

Bu default WordPress comments have instructions for users on how to use HTML tags and attributes in the actual comments, many users are turned off by this, here is how to remove HTML Tags and Attributes section in the post comments form in WordPress theme. By default this format appears in a few themes including Twenty…

Remove Featured Image from Post in Twenty Twelve WordPress Theme

Twenty Twelve WordPress Theme sets a big old ‘Featured  Image’ on top of the post content  if the featured image is set in a post. To remove the Featured Image from this area but keep it intact for excerpts where it shows elsewhere you need to hack it in CSS or edit the content.php file,…

Making Custom Social Media Images for Share Links in WordPress

There are many Social Media Share link plugins for WordPress that do a great job, but not many that allow you to use a custom image that you may have designed for Facebook, Twitter or Google to use with the sharing link of the post or page, instead you are stuck with the default ones….

Upgrade MySQL Database from 5.5 to 5.6 on macOS 10.8 Mountain Lion

Remove Mysql Databse Macos

MySQL version 5.6.14 is available for download for OSX, a double click and install is available named Mac OS X ver. 10.7 (x86, 64-bit), DMG Archive. (Don’t worry about the 10.7 naming, Works fine in OSX 10.9 and OSX 10.8) Stop the MySQL Server sudo /usr/local/mysql/support-files/mysql.server stop Download and Launch the DMG There is no upgrade…

Secure the WP Admin Folder in WordPress Using htaccess

To protect your WordPress wp-admin folder from everyone else apart from you, you can add a htaccess file in the /wp-admin folder to allow only access from your IP address and everyone else will be denied and receive a ‘Page Not Found‘ 404 error. This ensures no-one can even get to the login screen which…

Add HTML [br] break tag to a Widget Title in WordPress

By default you can’t add HTML to a Widget Title in WordPress, such as a break tag <br>, you can get around this by adding a filter to allow shortcode to the title area…. In functions.php file in your child theme add: add_filter(‘widget_title’, ‘do_shortcode’); add_shortcode(‘br’, ‘ng_shortcode_breaktag’); function ng_shortcode_break( $attr ){ return ‘<br />’; } Now…

How to Create Custom WordPress Template Posts, Pages, Headers, Footers and Sidebars

How to create new WordPress templates for your theme including posts, pages, headers, footers and sidebars. To change the WordPress home page edit the index.php in the main theme  if using a child theme, just copy and then edit the file in your child theme folder alternatively you can create/edit front-page.php  – this will take priority over the index.php To make a…