Hi, how would I put content on the frontpage (ie the first page) only like a summary for example
Hi, how would I put content on the frontpage (ie the first page) only like a summary for example
you can use a static page
or use if(is_home())
or create a home.php ==> how does it work
Would it work like this?
<?php if(is_home()) : ?>
Home page content here
<?php endif; ?>
I think !
try first with a simple
<?php if(is_home()) : ?>
echo "if this text display, forunner si great, else, he is stupid, but in this cas, it will not display";
<?php endif; ?>You can also assign a specific Page to be your home page
http://codex.wordpress.org/Creating_a_Static_Front_Page
This topic has been closed to new replies.