Deprecated
This method has been deprecated.
AnsPress_Hooks::filter_page_title( Object $post )
Description #
Append variable to post Object.
Parameters #
- $postObject (Required) Post object.
Source #
File: includes/hooks.php
public static function filter_page_title( $post ) {
if ( ap_opt( 'base_page' ) == $post->ID && ! is_admin() ) {
$post->post_title = ap_page_title();
}
}
Expand full source code Collapse full source code View on GitHub: includes/hooks.php:830
Add your comment