[Plugin: WordPress SEO by Yoast] Post & Pages admin grid does not use title & desc filters
-
In class-metabox.php see function column_content
Replace
echo $this->page_title( $post_id );
with
echo apply_filters( 'wpseo_title', $this->page_title( $post_id ) );
and
this
echo wpseo_get_value( 'metadesc', $post_id );
with
echo apply_filters( 'wpseo_metadesc', wpseo_get_value( 'metadesc', $post_id ) )
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘[Plugin: WordPress SEO by Yoast] Post & Pages admin grid does not use title & desc filters’ is closed to new replies.