<?php if (is_page_template()) {
echo get_page_template_slug();
echo get_page_template() ;
?>
is there any way to print this two echo statements in different line with out closing php and use html to line break
in plane php
<?php if ( 1 ==1 ) {
echo 'first line';
echo 'second line';
}
the two echo values might not be string
in all cases
how to add line break after an echo statement, so that the next statement prints in new line
';`` or ``echo '\n\n';`` in between the two lines? – user1438038 Aug 02 '17 at 10:31