Filters

Posts under the "Filters" category

Overview

Filters to customize WordPress list tables on back-end and front-end: wpda_column_default (change column layout/output) Filters to customize simple forms on back-end and front-end: wpda_before_simple_form (add custom code before a data entry form)...

wpda_column_default

Filter wpda_column_default was added to influence the layout of list table columns. The filter works for all columns except the fist one. The first column holds the links to other actions.You can use this filter in combination with action hook wpda_after_list_table to...

wpda_before_simple_form

Use action hook wpda_before_simple_form to add HTML and JavaScript before a data entry form. Argument $self contains a reference to your simple form instance, which allows you to interact with your data entry form through public members and methods.

wpda_after_simple_form

Use action hook wpda_after_simple_form to add HTML and JavaScript after a data entry form. Argument $self contains a reference to your simple form instance, which allows you to interact with your data entry form through public members and methods.

wpda_construct_where_clause

WP Data Access version 3 allows you to add your own search logic through a filter named wpda_construct_where_clause. The search logic provided through this filter is used in all tools. To allow developers to add search logic for specific tables or columns only, the...