How to get this in wordpress?

now.i want to add a flash to my site,namely,when access my site, first shows the flash, after some minutes,then redirect to the home page. on the flash page, there is also a link “enter to the website”.

the way i am able to think is the following, in the flash i add code

stop();getURL('example.com/index.php','_self')

. then create a file named index.php. put the invoke flash code into it. then rename the default index.php name to “homep.php”.

but it’s not work. how to correct it?

hello, please check this thread : http://www.sitepoint.com/forums/showthread.php?590709-how-do-i-add-the-intro-page-in-Wordpress

If the solution there didn’t work for you, You can try to add this Code on your Index.php but please before doing so backup this file… :

<?php if (is_front_page()) : ?>

insert code for the flash thingy here
 
<?php else : ?>

put nothing here
<?php endif;?>


You can read more about Conditional Tags Here : Link

Goodluck