You appear to be a bot. Output may be restricted
Description
Whether or not we are showing link columns on this overview page.
This depends on the post being accessible or not.
Usage
$bool = WPSEO_Yoast_Columns::display_links();
Parameters
Returns
bool Whether or not the linking columns are shown
Source
File name: wordpress-seo/admin/class-yoast-columns.php
Lines:
1 to 10 of 10
private function display_links() { $current_post_type = sanitize_text_field( $this->get_current_post_type() ); if ( empty( $current_post_type ) ) { return false; } return WPSEO_Post_Type::is_post_type_accessible( $current_post_type ); }