Come across a shortcode glitch a while back when I was building custom interface for a client site. The shortcode’s output was displaying at the top of the page content, no matter where I dropped the shortcode. Searched around for quite a bit until I found the fix. Hopefully you will find this blog post […]
Archive for the ‘wordpress’ Category
Moving WordPress to new Domain and forwarding permalinks
How to forward your permalinks under a new domain when using WordPress You have decided to re-brand your domain. You have been using WordPress for several years and have tons of blogs, and quite a bit of pages. What is the best way to keep the same permalink structure and just redirect the root domain […]
Trim whitespace on WordPress Excerpt
Recently built a client website and was pulling in a custom excerpt to the homepage for a custom post type. Everything worked fine until the client decided they were going to add a header image above every post and add some returns before the actual text started. This change on their end started giving my […]
Pagination for Custom Post Types in WordPress
Custom Post Types in WordPress are a great way to expand on custom WordPress development. Once you have all the custom post type in your functions.php file, usually you call a custom query in your template page for your custom post type. When doing pagination for a custom post type in WordPress One thing to […]
WordPress Site Development
There is a right way and a wrong way how to develop a client’s WordPress site. When you develop a site for a client you more than likely always put it up on a test server before you put it on their live server. This gives them a chance to look it over and to […]
Custom Contact Form in WordPress
Your own custom Contact Form in WordPress. There are tons of contact form plugins. For a while I was using Contact Form 7, but after a few plugin updates, I was starting to get feedback the form was giving problems. Always spitting out an error that the form couldn’t be submitted. So I decided that […]
WordPress Security through htaccess
There are quite a few plugins for enhancing your WordPress site from getting hacked via the login page. Over the years I have used limit login attempts plugin for blocking IP addresses that get your login credientials wrong in certain number of tries. This works well for bruteforce attacks. And the settings are very customizable […]
Open New Window for Frontend of your Website in WordPress
Im not sure why WordPress hasn’t added the open in new window when you click on visit website when you are in the admin section. Of course I want to keep my admin window and not take that page to my front end. Personally I like to have both the admin and front end of […]
Removing Sidebar Menus in WordPress
Sometimes you just want to clean up the WordPress Admin side bar. Whether you want to limit your client’s access to certain sections. Remove a Whole Menu in WordPress For instance Appearance, sometimes you don’t want to give them access to editing the custom theme you developed. Just paste this code into your functions file […]
Customizing WordPress Admin Side bar
Quick code to paste into your functions file for customizing your sidebar order in the admin section of WordPress. Some clients won’t need the Posts at the top, maybe their blog is secondary to their website, usually better to put the Posts and Comments together. Just change the order of how you want to customize […]