I want to conclude the title of the page not on all pages, for example on the necessary pages, so that it does not appear. How can this be implemented? I used the wp_get_document_title() or the_title() function, but I don’t understand how to make a selection

    3 answers 3

    Thanks, suggested an idea. Used the function is_page ():

     <?php if (!is_page( array(66, 124) )) {the_title();}?> 

      Wordpress has standard functions for such tasks, for example, is_single () or is_category () or others. Read here , here . This site has all the information about wordpress.

        There is also an option to make for each page / article an additional tick box - display or not display. If interested, I will write in more detail.