Scroll Back to Top is a WordPress plugin to add a button that appears only when users scroll down the page allowing them to scroll to the top of the page. The plugin comes pre-configured and is fully functional on activation. The plugin offers a number of webmaster-friendly features to completely customize the look, position, and animation. more…
Articles tagged with "Plugin"
Scroll Back to Top WordPress Plugin Button Designs
The WordPress Scroll Back to Top plugin is extremely flexible and can accommodate nearly any design to match an existing website. By adjusting a few simple configuration options you can easily adapt the plugin to your site in minutes. To give you some inspiration for different scroll to top button ideas and to illustrate how simple it is to change the design I have a few screenshots of the button in action along with the settings needed to execute the design. more…
Managing WordPress Roles and Capabilities
The WordPress permissions system is pretty straight forward, each task a user performs on a WordPress installation requires the capability to perform that task. These capabilities are how a WordPress installation can allow authors to write articles but not edit plugins, or allow editors to manipulate content but not change a theme. more…
Exclude Custom Post Type From Search in WordPress
I ran into an issue the other day where I had custom post types showing up in WordPress search results. If you are manually registering your post types simply add the ‘exclude_from_search’ argument before registering. more…
Change the WordPress User Registration Welcome Email
When a user registers on your WordPress site or you create a user manually in wp-admin an email is sent automatically. In many cases this email will not be adequate; you may want to add a link, customize some of the copy, or create an HTML email with images. more…
Modify a WordPress Custom Post Type Configuration After it has Been Registered
I came across a situation today where a plugin had registered a custom post type and I needed to change some of that configuration, namely I wanted to exclude the post type from search results. The solution is pretty simple. more…
Update URL Rewrite Rules in WordPress
Rewriting Basics
URL rewriting is the process of creating a URL that is friendly for users to look at, type, and share and is usually referred to as a pretty URL. URL rewriting allows you to take query parameters and add them to the URL instead of after the ? in the URL. more…
Add Shortcode Functionality to a WordPress Plugin
The WordPress Shortcode API allows you to render template blocks by simply calling the shortcode in a post or page. Template blocks can be a part of a theme or a plugin, but may be included by entering a shortcode for the template when creating a post/page in wp-admin, allowing users to easily include content. more…
12 Plugins That Make Sublime Text 2 the Best Code Editor for PHP Development
Sublime Text 2 is a fantastic code editor but out of the box is pretty limited in PHP IDE functionality. There are many plugins available for Sublime Text 2 that make it more of an IDE and in my opinion, the best editor available for PHP development. more…
Creating a Plugin for WordPress
Creating a plugin for WordPress is a really simple process and allows you to create reusable code that you can incorporate into any project or share with others. WordPress has some great support for getting started, I recommend you head over to the Writing a Plugin article in the Codex. more…