如何给wordpress的page页面添加关键字和描述
3个回答
展开全部
具体方法如下:
1、进入后台,如图所示,找到外观——编辑
2、 然后在编辑主题的右边,找到header.php文件,如图点击打开
3、在头部header.php文件中,找到</title>代码,这代码表示标题结束的意思,我们就在标题的后面加入关键词和描述代码,如图所示,找到</title>后,请按回车键空出一行,方便我们下一步添加代码
4、按照步骤三空出一行后,请先修改下面代码
<meta name="keywords" content="这里填写你网站的关键词" />
<meta name="description" content="这里填写你网站的描述"/>
一般网站的关键词和描述都是站长自己定的,请根据网站需要,修改上面的关键词和描述,然后把代码放进刚才第三步空出的那一行,然后再点击下面的更新提交,自此wordpress的关键词和描述添加完毕。
博思aippt
2024-07-20 广告
2024-07-20 广告
博思AIPPT是基于ai制作PPT的智能在线工具,它提供了4种AI制作PPT的方式,包括AI生成大纲、AI直接生成PPT、文本生成PPT、AI提炼word文档生成PPT,一站式集成多种AI生成PPT的方式,可满足办公用户的不同需求和使用场景...
点击进入详情页
本回答由博思aippt提供
展开全部
WP开发21:wordpress网站文章页模板,如何调用文章的标题、内容、标签等信息?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐于2016-03-21
展开全部
如果你会写代码就方便,不会的话建议还是使用All in One SEO Pack插件,这样方便很多。
用插件应该不会像你说的那样不会显示,你直接用浏览器的源代码看看,或许你在站长工具那的缓存,所以没显示出来。
用代码的方法为:
把以下代码放header.php文件中的标题<title>之下。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
if (is_home()) {
$keywords = $options['keywords'];
$description = $options['description'];
}elseif (is_single()) {
$tags = wp_get_post_tags($post->ID);
foreach ($tags as $tag ) {$title_tags = $title_tags .$tag->name ."|"; $keywords = $keywords .$tag->name .",";}
$title_tags = substr($title_tags,0,-1);
if($title_tags) $title_tags = '|'.$title_tags;
$keywords = substr($keywords,0,-1);
if (has_excerpt()) {
$description = get_the_excerpt();
}else {
$description = mb_strimwidth(strip_tags(apply_filters('the_content',$post->post_content)),0,220,"...");
$description = str_replace("\n","",$description);
$description = empty($description)? $keywords : $description;
}
}elseif (is_category()) {
$keywords = single_cat_title("", false);
if ($paged > 1){
$description = trim(strip_tags(category_description($cat_ID))).' - '.get_bloginfo('name').'第'.$paged.'页。';
}else{
$description = trim(strip_tags(category_description($cat_ID)));
}
}elseif (is_page()) {
$keywords = get_the_title("", false);
$description = mb_strimwidth(strip_tags(apply_filters('the_content',$post->post_content)),0,220,"...");
}elseif (is_tag()) {
$keywords = single_tag_title("", false);
if ($paged > 1){
$description = trim(strip_tags(tag_description($tag_id))).' - '.get_bloginfo('name').'的'.single_tag_title('',false).'的标签存档文章-第'.$paged.'页。';
}else{
$description = trim(strip_tags(tag_description($tag_id))).' - '.get_bloginfo('name').'的'.single_tag_title('',false).'的标签存档文章。';
}
}elseif (is_day()) {
$keywords = get_the_time('Y年m月d日');
if ($paged > 1){
$description = get_bloginfo('name').get_the_time('Y年m月d日').'的存档文章-第'.$paged.'页。';
}else{
$description = get_bloginfo('name').get_the_time('Y年m月d日').'的存档文章。';
}
}elseif (is_month()) {
$keywords = get_the_time('Y年m月');
if ($paged > 1){
$description = get_bloginfo('name').get_the_time('Y年m月').'的存档文章-第'.$paged.'页。';
}else{
$description = get_bloginfo('name').get_the_time('Y年m月').'的存档文章。';
}
}elseif (is_year()) {
$keywords = get_the_time('Y年');
if ($paged > 1){
$description = get_bloginfo('name').get_the_time('Y年').'的存档文章-第'.$paged.'页。';
}else{
$description = get_bloginfo('name').get_the_time('Y年').'的存档文章。';
}
}elseif(is_search()) {
$keywords = $s;
$description = get_bloginfo('name').$s.'的搜索结果。';
}elseif(is_404()) {
$keywords = '404,错误页面';
$description = '404错误,未找到你需要的页面,请返回首页。';
}
?>
用插件应该不会像你说的那样不会显示,你直接用浏览器的源代码看看,或许你在站长工具那的缓存,所以没显示出来。
用代码的方法为:
把以下代码放header.php文件中的标题<title>之下。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
if (is_home()) {
$keywords = $options['keywords'];
$description = $options['description'];
}elseif (is_single()) {
$tags = wp_get_post_tags($post->ID);
foreach ($tags as $tag ) {$title_tags = $title_tags .$tag->name ."|"; $keywords = $keywords .$tag->name .",";}
$title_tags = substr($title_tags,0,-1);
if($title_tags) $title_tags = '|'.$title_tags;
$keywords = substr($keywords,0,-1);
if (has_excerpt()) {
$description = get_the_excerpt();
}else {
$description = mb_strimwidth(strip_tags(apply_filters('the_content',$post->post_content)),0,220,"...");
$description = str_replace("\n","",$description);
$description = empty($description)? $keywords : $description;
}
}elseif (is_category()) {
$keywords = single_cat_title("", false);
if ($paged > 1){
$description = trim(strip_tags(category_description($cat_ID))).' - '.get_bloginfo('name').'第'.$paged.'页。';
}else{
$description = trim(strip_tags(category_description($cat_ID)));
}
}elseif (is_page()) {
$keywords = get_the_title("", false);
$description = mb_strimwidth(strip_tags(apply_filters('the_content',$post->post_content)),0,220,"...");
}elseif (is_tag()) {
$keywords = single_tag_title("", false);
if ($paged > 1){
$description = trim(strip_tags(tag_description($tag_id))).' - '.get_bloginfo('name').'的'.single_tag_title('',false).'的标签存档文章-第'.$paged.'页。';
}else{
$description = trim(strip_tags(tag_description($tag_id))).' - '.get_bloginfo('name').'的'.single_tag_title('',false).'的标签存档文章。';
}
}elseif (is_day()) {
$keywords = get_the_time('Y年m月d日');
if ($paged > 1){
$description = get_bloginfo('name').get_the_time('Y年m月d日').'的存档文章-第'.$paged.'页。';
}else{
$description = get_bloginfo('name').get_the_time('Y年m月d日').'的存档文章。';
}
}elseif (is_month()) {
$keywords = get_the_time('Y年m月');
if ($paged > 1){
$description = get_bloginfo('name').get_the_time('Y年m月').'的存档文章-第'.$paged.'页。';
}else{
$description = get_bloginfo('name').get_the_time('Y年m月').'的存档文章。';
}
}elseif (is_year()) {
$keywords = get_the_time('Y年');
if ($paged > 1){
$description = get_bloginfo('name').get_the_time('Y年').'的存档文章-第'.$paged.'页。';
}else{
$description = get_bloginfo('name').get_the_time('Y年').'的存档文章。';
}
}elseif(is_search()) {
$keywords = $s;
$description = get_bloginfo('name').$s.'的搜索结果。';
}elseif(is_404()) {
$keywords = '404,错误页面';
$description = '404错误,未找到你需要的页面,请返回首页。';
}
?>
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询