创建模板很容易。创建一个新页面 my-template.php 将此代码放在顶部。
<?php
/*
Template Name: My New Template
*/
?>
但这取决于你的主题。我为你编辑了二十个。它会给你一个创建模板的想法。
<?php
/*
Template Name: My New Template
*/
get_header();
$headers[] = 'From: Me Myself <me@example.net>';
$headers[] = 'Cc: Aravind B Codex <abc@wordpress.org>';
$headers[] = 'Cc: iluvwp@wordpress.org'; // note you can just use a simple email address
?>
<?php
if(is_page()) :
wp_mail( $to, $subject, $message, $headers );
endif;
?>
<div id="container">
<div id="content" role="main">
<?php
/* Run the loop to output the page.
* If you want to overload this in a child theme then include a file
* called loop-page.php and that will be used instead.
*/
get_template_part( 'loop', 'page' );
?>
</div><!-- #content -->
</div><!-- #container -->
将电子邮件代码放入其中。将其保存在模板目录中。
转到管理面板并添加/编辑页面。在页面的右侧有一个选项(模板)。您的模板将在下拉菜单中可见。选择模板并保存页面就是这样。