我的自定义wordpress页面中有一个主页(index.php)。在主页我有一个水平导航栏,我有一个“联系我们”部分,因为我是wordpress开发的新手,我不知道如何创建与wordpress联系我们。
我的联系我们页面的代码是
<?php/* This is contact page of SampleTheme */
?>
<?php
get_header();
?>
<div class="EventCalender"> <?php echo do_shortcode(' [do_widget id=spider_calendar-2]'); ?> <br>
<p class="EventCalenderPara"> There are 13 Planed events!! We all hope<br>
to see you and your family there! </p></div>
<?php get_footer(); /?>
当我通过运行url“localhost / wordpress / contact.php”运行此页面时,我收到404错误。我的自定义wordpress主题中只有索引,页眉,页脚,功能,联系页面
答案 0 :(得分:0)
&#34;本地主机/ WordPress的/ contact.php&#34; - 这是错误的。你可以创建一个新的联系页面,然后运行这个网址&#34; localhost / wordpress / contact&#34;如果您的联系页面名称是&#34;请联系&#34; 如果要创建自定义页面,请按照此操作 使用contact.php页面的顶部
<?php
/* Template Name:Contact*/
?>
然后转到信息中心 - &gt;页面 - &gt; 修改联系页面(如果不存在则创建新页面) - &gt;从右侧边栏单击模板名称,然后选择“联系人”。保存并运行