2023-09-26, 19:03:09
I think I understand what they are trying to do.
In your template that is being used to display your news, you will probably want to do something like this:
Maybe that will help point you in the right direction.
In your template that is being used to display your news, you will probably want to do something like this:
Code:
<?php if (nm_is_main()) { ?>
<?php get_page_title(); ?> | <?php get_site_name(); ?>
<?php } ?>
<?php if (nm_is_single()) { ?>
<?php nm_post_title(); ?>
<?php } ?>
Maybe that will help point you in the right direction.