| 564 | | echo '<a href="' . esc_url( add_query_arg( array( 'post_format' => $format, 'post_type' => $post->post_type ), 'edit.php' ) ) . '" class="post-state-format post-format-icon post-format-' . $format . '" title="' . $label . '">' . $label . ":</a> "; |
| | 564 | /** |
| | 565 | * Filter whether to display a post format icon for the post. |
| | 566 | * |
| | 567 | * @since 3.9.0 |
| | 568 | * |
| | 569 | * @param bool $show Whether to display the post format icon. Default true. |
| | 570 | */ |
| | 571 | if ( apply_filters( 'post_row_format_enabled', true ) ) { |
| | 572 | echo '<a href="' . esc_url( add_query_arg( array( 'post_format' => $format, 'post_type' => $post->post_type ), 'edit.php' ) ) . '" class="post-state-format post-format-icon post-format-' . $format . '" title="' . $label . '">' . $label . ":</a> "; |
| | 573 | } |