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...
Hooks & filters
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_wpdataaccess_prepare
Filter wpda_wpdataaccess_prepare allows developers to add their own html and javascript code to a Data Table.Parameters$html HTML code (may include JavaScript code) $schema_name Database schema name (database name) $table_name Database table name $pub_id ID $columns...
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_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_list_table
Use action hook wpda_after_list_table to add custom HTML and JavaScript after a list table. Argument $self contains a reference to your list table instance, which allows you to interact with your list table through public members and methods.NoteYou can use this...
wpda_before_list_table
Use action hook wpda_before_list_table to add custom HTML and JavaScript before a list table. Argument $self contains a reference to your list table instance, which allows you to interact with your list table through public members and methods.
wpda_add_search_filter
Add custom HTML and JavaScript to the search bar. This action hooks applies to WordPress list tables only. They do not affect publications or Data Forms. The action works both on the back-end and front-end.Parameters$schema_name Database schema name (datebase name)...
wpda_add_search_actions
Add actions to the search bar (e.g. an icon). This action hooks applies to WordPress list tables only. They do not affect publications or Data Forms. The action works both on the back-end and front-end.Parameters$schema_name Database schema name (datebase name)...
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)...
Recent Comments