2016-10-26, 05:05:16
(2016-10-21, 01:58:16)lysy2708 Wrote: Hi, I have question is there a way to make posts page to display content from page editor above posts list?
I hope I have understood what you need.
Edit your template and insert this:
Code:
<?php if (nm_is_home()) getPageContent(return_page_slug()); ?>
...just before the
<?php get_page_content(); ?>
line.If you want to display the news page content also on secondary pages, archives, tag pages, etc., change
nm_is_home
by nm_is_site
(or nm_is_main
only for pages 1, 2, 3... but not for tags, archives...)