Filter Title through 'the_title'
-
I am trying to hide the title from the generated PDF but am not able to do this with 1.0.5 as it calls:
$pdf->SetTitle( $post->post_title );
If this were passed through ‘the_title’ filter then it would get the correct title formatting if it is altered by a plugin, and also allows the value to be intercepted and removed if necessary (like in case).
$pdf->SetTitle( apply_filters( 'the_title', $post->post_title ) );
https://www.ads-software.com/plugins/wp-post-to-pdf-enhanced/
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Filter Title through 'the_title'’ is closed to new replies.