the_title() call
-
I need to customise the <?php the_title()?> call in order to make an anonymising extension for WPJobBoard plugin work properly. It works fine with other themes but not with Hestia (it does not do the full anonymisation). The plugin’s developer sent me the instruction how to make it work, which involves copying the content of single.php or page.php into a separate file (single-resume.php) and replace the <?php the_title()?>; call with the following code:
<?php global $wpjb_candidate_anonymizer; ?> <?php echo esc_html( $wpjb_candidate_anonymizer->anonymize_name( get_the_name(), get_the_ID() ) ) ?>However, I cannot find the <?php the_title() ?> anywhere in teh theme. Could you please help me?
The topic ‘the_title() call’ is closed to new replies.
