Pippins Plugins
  • Email
  • Facebook
  • Feedburner
  • Github
  • Google
  • Twitter
  • Vimeo
  • Youtube
  • Rss
  • About
  • News
  • Join the Site
    • Member Benefits
    • Member Plugins
    • Email Notifications
  • Plugin Store
    • Affiliate Area
    • Checkout
  • Plugins
    • Plugin Portfolio
      • Plugin Portfolio – List View
    • Free
    • Premium
    • Member Plugins
    • Coding Standards
    • Get Plugin Support
  • Tutorials
    • Series
      • Plugin Development 101
      • Creating a User Follow System Plugin
      • Customizing Restrict Content Pro
      • Displaying Content with Easy Content Types
      • Writing Your First WordPress Plugins, Basic to Advanced
      • Working with Widgets
      • User Submitted Image Galleries
      • Plugin Thoughts
      • Integrating Stripe.com with WordPress
      • WordPress Rewrite API
    • Member Exclusive
      • Free Members
      • Subscriber Only
    • Difficulty
      • Beginner
      • Intermediate
      • Advanced
    • Action and Filter Hooks
    • Ajax
    • Custom Post Types
    • External APIs
    • Short Codes
    • Taxonomies
    • Video Tutorials
    • Widget Tutorials
    • WordPress Admin / Dashboard
    • Working with jQuery
    • WordPress Database
    • Writing Plugins
    • Tag Index
  • Reviews
  • Support Forum
  • Contact
    • Support the Site
    • Request Code Review
    • Plugin Support

Posts tagged "add_filter"

Home» Posts tagged "add_filter"

Plugin Development 101 – An Intro to Filters

Posted on January 23, 2013 by Pippin in Beginner, Member Restricted, Subscriber Only, Tutorials, Writing Plugins 5 Comments
wordpress-plugin-development_101

In this part of Plugin Development 101 we take a look at one of the most important tools plugin developers use every day: filters. The presence of filters throughout WordPress are one of the elements that make plugin development possible, so having a good understanding of what they are and how they work is extremely [...]

View Post add_filter, apply_filters

Introduction to the gettext Filter in WordPress

Posted on June 21, 2012 by Pippin in Action and Filter Hooks, Intermediate, Tutorials, Video Tutorials 5 Comments

The gettext filter gives us a really easy way to change text anywhere in our WordPress install, including plugins and themes, without ever changing any of the original code. It is a great way to easily customize labels, headings, button text, and any other text we wish to change.

View Post add_filter, gettext, localization

Let’s Talk Extensible Code

Posted on June 17, 2012 by Pippin in Thoughts 13 Comments
Modular City

A few weeks ago, I gave a presentation at WordCamp Kansas City titled “Modular Plugins”. The talk was focused on the idea of writing extensible code when building plugins. I’d like to continue a discussion of the same topic here.

View Post add_action, add_filter, apply_filters, do_action

Playing Nice with the “the_content” Filter

Posted on May 14, 2012 by Pippin in Action and Filter Hooks, Intermediate, Tutorials, Writing Plugins 45 Comments

One of the very first things people tend to learn when writing plugins is how to attach custom HTML to the bottom of their WordPress posts using the filter called “the_content”. This is good, as it is an extremely useful filter, but rarely do tutorials really explain how to use this filter well, and how [...]

View Post add_filter, the_content

Adding Custom Fields to the Easy Digital Downloads Checkout

Posted on May 7, 2012 by Pippin in Action and Filter Hooks, Intermediate, Tutorials, Writing Plugins 15 Comments

Easy Digital Downloads is a plugin I have been building for selling digital downloads through WordPress. It is completely free and very flexible. Due to a large number of actions hooks and filters, there are many ways that you can customize the plugin to best suit your needs. This tutorial will walk you through the [...]

View Post add_action, add_filter, easy digital downloads

Add Custom Links to User Row Actions

Posted on April 18, 2012 by Pippin in Action and Filter Hooks, Intermediate, Tutorials, Working with Users, Writing Plugins 6 Comments

While working on a user badge system for the CG Cookie network, I came across the need to add a custom link to the action links, such as Edit and Delete, present for each user on the WordPress Users page. After a quick google search, I was able to find a simple filter than can [...]

View Post add_filter, page_row_actions, post_row_actions, user_row_actions

Add Screen Options Tab to Your WordPress Plugin

Posted on April 4, 2012 by Pippin in Action and Filter Hooks, Intermediate, Tutorials, WordPress Admin / Dashboard, Writing Plugins 16 Comments
Screen Options

You have probably noticed the Screen Options tab in the top right corner of many WordPress admin pages. This tab brings down a configuration panel that you can generally use to control what elements are displayed on the current amin page. One of the really great things about the Screen Options tab is that which [...]

View Post add_filter, add_screen_option, Chris Marslender, get_current_screen

Get the Name of the Current Action or Filter

Posted on March 19, 2012 by Pippin in Action and Filter Hooks, Intermediate, Quick Tips, Tutorials No Comments

After watching a Twitter discussion this morning (shown in the image below), Helen Hou-Sandi, a WordPress developer and core-committer mentioned a function I had never heard of that can be used for finding the name of the current action or filter hook. It is called current_filter() and is extremely useful. Check out the snippets below [...]

View Post add_action, add_filter, current_filter

Removing “Restrict This Content” Meta Box in Restrict Content Pro

Posted on March 8, 2012 by Pippin in Action and Filter Hooks, Intermediate, Quick Tips, Tutorials, WordPress Admin / Dashboard 1 Comment

When using Restrict Content Pro, the “Restrict this Content” meta box is automatically loaded on all registered post types, but sometimes you want to remove it from certain post types. The plugin includes a simple filter that you can use to specify which post types the meta box should not be added displayed on. This [...]

View Post add_filter, meta box, restrict content pro

User Submitted Image Gallery – Part 6

Posted on February 27, 2012 by Pippin in Action and Filter Hooks, Advanced, Custom Post Types, Member Restricted, Subscriber Only, Taxonomies, Tutorials, WordPress Admin / Dashboard, Working with Users, Writing Plugins No Comments

Part 6 of User Submitted Image Galleries will show you how to setup the single image page that shows the details for a particular image. This section is not very complex, but it covers a few very important techniques that are really good to know when it comes to modifying information on post templates via [...]

View Post add_action, add_filter, attachment, dashboard, gallery, the_content
  • 1
  • 2
  • Login

Lost your password?

Please enter your username or e-mail address. You will receive a new password via e-mail.

  • Facebook Become a Fan Like

  • Twitter Subscribe on Twitter Follow

  • YouTube Follow my Videos Subscribe

  • RSS Feed Subscribe with RSS Subscribe

Easy Digital Downloads

Most Loved

  • Love It Pro for WordPress
  • Write a “Love It” Plugin with Ajax to Let Users Love Their Favorite Posts / Pages
  • Simple Notices Pro Plugin for WordPress
  • User Bookmarks for WordPress
  • Front End Registration and Login Forms Plugin

Latest Premium Content

  • Plugin Development 101 – Introduction to Adding Dashboard Menus
  • Plugin Development 101 – Intro to Loading Scripts and Styles
  • User Follow System – Part 5
  • Plugin Development 101 – Intro to Short Codes
  • Plugin Development 101 – Registering a Custom Post Type
  • Plugin Development 101 – Intro to Actions

Latest Tutorials

  • Test Your Plugins with RTL (0)

    Right-To-Left languages are those that...

  • Submitting Your First Pull Request to a WordPress Plugin on Github (5)

    Github is an extremely popular tool for managing WordPress plugins, and one...

  • Plugin Development 101 – Introduction to Adding Dashboard Menus (1)

    Adding new menus, both top level and sub level, to the WordPress Dashboard is a really common task for plugins...

Enter your email to receive automated updates when new posts are published

Latest Tweets

  • @Otto42 certainly a more entertaining alternative
    May 26, 2013
  • RT @toscho: #WordPress: How post meta fields work. http://t.co/uDRaDu0EsS
    May 25, 2013
  • RT @strickland: Afternoon crowd: To celebrate Memorial Day weekend @gittyapp is on sale through Monday. Now is the time to join in! http:/…
    May 25, 2013

Topics

the_content wp_enqueue_script add_options_page shortcodes Tom McFarlin get_user_meta contextual help attachments add_shortcode register_setting featured Sugar Event Calendar meta box authors attachment Related posts image plugin forms do_action short codes mail chimp login bbpress recent posts comments apply_filters post types short code taxonomies custom post type Ajax images gallery Stripe taxonomy jquery widgets users add_filter easy content types add_action widget restrict content pro easy digital downloads

Weekly Newsletter

Useful Links

  • Join the Site
  • Plugin Store
  • Affiliate Area
  • Tag Index
  • Support the Site
  • Suggest a Tutorial
  • Random Post
  • Contact

Monthly Archives

(c) 2013 Pippin's Plugins