We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c12e3fa commit 48117cdCopy full SHA for 48117cd
classes/tasks.php
@@ -91,7 +91,7 @@ public function sanitize_task( $task ) {
91
false
92
);
93
94
- return $task;
+ return apply_filters( 'wpcable_sanitize_task',$task );
95
}
96
97
/**
functions/admin-tasks.php
@@ -239,6 +239,7 @@ class="list-title"
239
<th class="col-value"><?php esc_html_e( 'Value', 'wpcable' ); ?></th>
240
<th class="col-title"><?php esc_html_e( 'Title', 'wpcable' ); ?></th>
241
<th class="col-notes"><?php esc_html_e( 'Notes', 'wpcable' ); ?></th>
242
+ <?php do_action('wpcable_task_table_header'); ?>
243
</tr>
244
</thead>
245
<tbody class="task-list"></tbody>
0 commit comments