我正在使用wordpress制作网站。我决定要有一个静态的首页,没有博客文章和内容。因此,我添加了一个图像滑块和一系列带有文本的小部件。
我的问题是我的页面被认为是头版,有糟糕的搜索引擎优化。我试着写几个单词,但我真的想要这个地方的滑块,而不是那里。
我的结构如下:
{text:call-us}{text:an intro sentence}{icon:facebook}
{image:logo}{menu}
{slider with captions}
{text: about the site as widget (not via page creation)}
{text:couple words with font awesome}
{text: more text} {text: more text}
{footer:map}{footer:facebook}{footer:contact}
那么,我怎样才能处理wordpress在页面中写一些如此重要的东西的需求,这根本不可见?
答案 0 :(得分:0)
在Wordpress中创建您的页面,在管理设置的阅读部分将其定义为主页,在主题文件夹中创建template-home.php(或任何名称)并放入其中:
<?php
/*
Template Name: Home page
*/
get_header();
?>
<!-- Put your static content here -->
<?php get_footer(); ?>
在WP后台编辑您的主页,然后选择&#34;主页&#34;作为您的页面模板。无需放置doctype / head,worpress将使用get_header
为您处理。