good landing page plugins for wordpress?

bondart

Junior Member
Joined
Mar 11, 2013
Messages
196
Reaction score
31
Hey guys do you know some good landing page plugins for wordpress?

i just need my website to be a blank page with some regular bull****
 
if you only need a blank template you can simply create one using any theme by creating additional template with combination of header.php and footer.php file plus defualt wordpress loop
 
if you only need a blank template you can simply create one using any theme by creating additional template with combination of header.php and footer.php file plus defualt wordpress loop

exactly, just search for any theme and put up a blank page.
 
Look guys , i have one website that i have an option when i create a page - on the left side i have an option - TEMPLATE -and then i chose - BLANK PAGE.

but now its gone and i cant chose it, what do i do? to get it back :O
HELPP!
 
Been searching everywhere id be glad to hear some answers two
 
This is how i do it!

(if its not what your looking for then don't flame me)

Normally create them by creating a new php file in my theme folder called page-NAME.php (change name)

then put this in the file:

Code:
<?php
/**
 * Template Name: NAME
 *
 */
get_header(); ?>

YOUR STUFF HERE

<?php get_footer(); ?>

Go to a wordpress page and select the new "NAME" you chose above...
 
Back
Top