Profile::page_title( string $title )
Description #
Add user page title.
Parameters #
- $titlestring (Required) AnsPress page title.
Source #
File: addons/profile/profile.php
public function page_title( $title ) { if ( 'user' === ap_current_page() ) { return $this->user_page_title() . ' | '; } return $title; }
Expand full source code Collapse full source code View on GitHub: addons/profile/profile.php:287
Add your comment