How to remove Title and CSS styling of title from particular page
The body_class() (see Codex) is a function that displays classes depending on the query. In other words: Depending on where you are, it outputs different classes. You can as well append your own – either directly as argument or with a filter: // Directly in your template <body <?php body_class( ‘your-custom-class-name’ ); ?>> Example for … Read more