Changeset 3115381
- Timestamp:
- 07/10/2024 08:39:07 AM (20 months ago)
- Location:
- admin-columns-for-acf-fields
- Files:
-
- 2 edited
-
tags/0.3.1/readme.txt (modified) (4 diffs)
-
trunk/readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
admin-columns-for-acf-fields/tags/0.3.1/readme.txt
r2997629 r3115381 10 10 License: GPLv2 or later 11 11 License URI: https://www.gnu.org/licenses/gpl-2.0.html 12 Date: 1 5.11.202312 Date: 17.11.2023 13 13 Version: 0.3.1 14 14 … … 114 114 add_filter('acf/admin_columns/sort_order_type','my_sort_order_type', 10, 2); 115 115 116 = "acf/admin_columns/ column/render_output" =116 = "acf/admin_columns/render_output" = 117 117 118 118 Allows you to modify the output of a certain $field in every row of a posts table. … … 135 135 return $rendered_output; 136 136 } 137 add_filter('acf/admin_columns/ column/render_output','my_column_value', 10, 4);137 add_filter('acf/admin_columns/render_output','my_column_value', 10, 4); 138 138 139 139 = "acf/admin_columns/render_raw" = … … 185 185 = "acf/admin_columns/before_render_output" = 186 186 187 Allows you to modify the field value of a certain $field before it is prepared for rendering. This filter is applied before 'acf/admin_columns/ column/render_output'.187 Allows you to modify the field value of a certain $field before it is prepared for rendering. This filter is applied before 'acf/admin_columns/render_output'. 188 188 189 189 **Parameters** -
admin-columns-for-acf-fields/trunk/readme.txt
r2997629 r3115381 10 10 License: GPLv2 or later 11 11 License URI: https://www.gnu.org/licenses/gpl-2.0.html 12 Date: 1 5.11.202312 Date: 17.11.2023 13 13 Version: 0.3.1 14 14 … … 114 114 add_filter('acf/admin_columns/sort_order_type','my_sort_order_type', 10, 2); 115 115 116 = "acf/admin_columns/ column/render_output" =116 = "acf/admin_columns/render_output" = 117 117 118 118 Allows you to modify the output of a certain $field in every row of a posts table. … … 135 135 return $rendered_output; 136 136 } 137 add_filter('acf/admin_columns/ column/render_output','my_column_value', 10, 4);137 add_filter('acf/admin_columns/render_output','my_column_value', 10, 4); 138 138 139 139 = "acf/admin_columns/render_raw" = … … 185 185 = "acf/admin_columns/before_render_output" = 186 186 187 Allows you to modify the field value of a certain $field before it is prepared for rendering. This filter is applied before 'acf/admin_columns/ column/render_output'.187 Allows you to modify the field value of a certain $field before it is prepared for rendering. This filter is applied before 'acf/admin_columns/render_output'. 188 188 189 189 **Parameters**
Note: See TracChangeset
for help on using the changeset viewer.