Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

Landing Page WordPress

  • SOLVED

My client would like to have the first page only with his logo and the two langueges to choos, when you click on the logo or the langueges, then you enter the wp-site.

Does anybody now how to do this the easy way? Do I need Dreamweaver or is there a plugin?

Thats the page: [[LINK href="http://www.swissdok.ch"]]http://www.swissdok.ch[[/LINK]]

Thanks Simone

Answers (2)

2013-01-18

plovs answers:

You have several options:

If you are handy with php then creating a custom template would be the way to go, it will give you the most flexibility, and is (arguably) faster then using a plugin.

- http://wpmu.org/wordpress-custom-page-template/
- http://codex.wordpress.org/Pages#Creating_Your_Own_Page_Templates

If you prefer a plugin then this one might be a start: http://wordpress.org/extend/plugins/site-layout-customizer/

Third option, you can add the following to your functions.php:


add_filter( 'page_template', 'wpa3396_page_template' );
function wpa3396_page_template( $page_template )
{
if ( is_page( 'my-custom-page-slug' ) ) {
$page_template = dirname( __FILE__ ) . '/custom-page-template.php';
}
return $page_template;
}


Create a page with the slug (page-link): my-custom-page-slug, set tht page as the home-page, and create a separate page with dreamweaver that looks exactly how you want it. In the snippet that new page is called: custom-page-template.php

2013-01-18

Arnav Joy answers:

you can do it by adding a page template and making it as home page , then when anyone click on it then he will move to other part of the site.

see here for more help

http://training.speedppc.com/creating-dynamic-landing-pages-in-wordpress-using-the-speedppc-wordpress-dki-plug-in/


Simone Fuchs comments:

I asked for the plugin, there is no direct download.