AnsPress_Post_Table_Hooks::comment_flag_view( array $views )
Description #
Add flag view link in comment table
Parameters #
- $viewsarray (Required) view items array.
Source #
File: admin/class-list-table-hooks.php
public static function comment_flag_view( $views ) { $views['flagged'] = '<a href="edit-comments.php?show_flagged=true"' . ( ap_sanitize_unslash( 'show_flagged', 'g' ) ? ' class="current"' : '' ) . '>' . esc_attr__( 'Flagged', 'anspress-question-answer' ) . '</a>'; return $views; }
Expand full source code Collapse full source code View on GitHub: admin/class-list-table-hooks.php:427
Add your comment