我想你回顧我的示例WordPress主題index.php代碼。WordPress的主題
<?php
/*
Template name: Homepage
*/
get_header();
?>
<?php
if(isset($_GET['action'])):
$action = $_GET['action'];
switch($action){
case "sendmail": include("sendmail.php"); break;
case "mailsent" : include("thanks.php"); break;
}
else:
?>
<!-------// Begin Content ---------->
<?php if (have_posts()): ?>
<?php while(have_posts()): the_post(); ?>
<tr>
<td class="contentarea">
<h1><?php the_title(); ?></h1>
<p> <?php the_content(); ?></p>
</td>
</tr>
<?php endwhile; ?>
<?php else: ?>
<tr>
<td class="contentarea">
<h1>Page not Found!</h1>
<p>Sorry, you are looking a page that is not here! </p>
<?php get_search_form(); ?>
</td>
</tr>
<?php endif; ?>
<!-------// End Content ---------->
<tr>
<!--begin contact form -->
<td class="contactarea" height="200">
<?php include("contact_area.php"); ?>
</td>
<!--end contact form -->
</tr>
<?php endif;?>
<?php get_footer(); ?
我想談談我的,如果上面的功能類似,但我不知道如何聲明:
if(action_is_set()){
then_do_the_action();
}else {
//begin content..etc.
}
有沒有的我上面的代碼??我還是一個更好的結構學習PHP和Wordpress。 請幫助。謝謝!!。
從mythemeshop購買任何主題都可享受六折優惠。訪問http://tech-papers.org/mythemeshop-coupon-code/ –