WordPress添加Description描述和Keyword关键词标签代码

最模板 2022-04-12 10:12 WordPress教程
在WordPress网站中添加Description描述和Keyword关键词,可以采用插件来实现,但是我们想简单点,让程序自动判断,该怎么办?
WordPress添加Description描述和Keyword关键词标签代码


我们可以在源码添加
<?php
	$keywords = 'zuimoban官网';
	$description = 'zuimoban网';
	//文章页
	if (is_single()){
		//自定义栏目添加关键字和描述
		$single_keywords = get_post_meta($post->ID, "keywords", true);
		$description = get_post_meta($post->ID, "description", true);
		//如果没设置自定义关键字,将使用标签作为关键字
		if($single_keywords == ""){
			$tags = wp_get_post_tags($post->ID);
			foreach ($tags as $tag){
				$single_keywords = $single_keywords.$tag->name.",";
			}
			//去掉关键字前后的空白
			$single_keywords = rtrim($single_keywords, ', ');
		}
		///如果文章关键字不为空
		if($single_keywords){
			$keywords = $single_keywords;
		}
		//自定义描述如果为空,将使用文章中的100个字作为描述
		if($description == ""){
			if($post->post_excerpt){
				$description = $post->post_excerpt;
			}else{
				$description = mb_strimwidth(strip_tags(apply_filters('the_content',$post->post_content)),0,200);
			}
		}
	}
	//页面,添加自定义栏目keywords和description(关键字和描述)。
	elseif (is_page()){
		$keywords = get_post_meta($post->ID, "keywords", true);
		$description = get_post_meta($post->ID, "description", true);
	}
	//分类页,使用分类名作为关键字,分类描述作为文章描述。
	elseif (is_category()){
		$keywords = single_cat_title('', false);
		$description = category_description();
	}
	//标签页,使用标签名作为关键字,标签描述作为文章描述。
	elseif (is_tag()){
		$keywords = single_tag_title('', false);
		$description = tag_description();
	}
	//去掉两段空格
	$keywords = trim(strip_tags($keywords));
	$description = trim(strip_tags($description));
	?>
<meta name="keywords" content="<?php echo $keywords; ?>" />
<meta name="description" content="<?php echo $description; ?>" />

以上代码添加到模板head.php中:

WordPress添加Description描述和Keyword关键词标签代码

缺点:
1,仅合适wordpress网站,少woomcomerece产品品牌标签关键词描述
2.只能添加在模板,模板升级就消失了

优点: 免插件,自动提取相应文字作为escription描述和Keyword关键词.

相关文章

  1. 让woocommerce将产品标题设置为产品图片的

    woocommerce图像标题和alt标签对SEO至关重要,更改每个图像标题和alt标签将花费很长时间。一般优化我们会在函数当中加载代码: add_filter(wp_get_attachment_image_attributes, change_attachement_image_a...

    2020-02-29
  2. 阻止恶意URL请求错误查询BBQ脚本代码

    阻止恶意URL请求错误查询BBQ是一个简单的脚本,可保护您的网站免遭恶意URL请求。检查所有传入流量,并悄阻止掉一些恶意请教代码eval(,base64_和过长请求字符串。这是一个简单而可靠...

    2020-04-13
  3. 用户在WooCommerce访问时自动将产品添加到

    实现用户在WooCommerce访问时自动将产品添加到购物车代码: /** * 用户在WooCommerce访问时自动将产品添加到购物车zuimoban.com */add_action( template_redirect, add_product_to_cart );function add_product_to_car...

    2021-07-31
  4. 从WordPress数据库中删除孤立的meta帖子元

    如果在您的 WordPress网站生命周期中,您已经激活和停用了添加自定义帖子类型或为帖子类型添加其他选项的插件,那么您的网站很有可能包含孤立的meta帖子元。孤立是指他们的父meta帖...

    2022-04-05
  5. 配置WordPress在Zeus服务器重写规则

    配置WordPress在Zeus服务器重写规则,rewrite.script 如下: RULE_0_START:# get the document rootmap path into SCRATCH:DOCROOT from /# initialize our variablesset SCRATCH:ORIG_URL = %{URL}set SCRATCH:REQUEST_URI = %{URL}# see if th...

    2021-07-31
  6. 修复WP Super Cache Preload预缓存不工作

    WP Super Cache 是一个不错的 WordPress 缓存解决方案,但我无法让预加载功能在 VPS 上工作它甚至无法启动。preload 函数的作用是预先缓存所有帖子、标签等,以使一切更快. 首先要做的是关闭...

    2022-04-04
  7. 上传wordpress图片自动按照日期重命名代

    在wordpress上传的图片多数以本地图片名直接上传,若是按照图片本性属性传,在SEO当中能起到很大作用,但是多数我们注意不到,可能包含特殊字符,让wordpress系统自动重新命名是最好...

    2022-04-04
  8. 优化wordPress中使搜索URL看起来更漂亮

    使用 WordPress,您可以在Settings - Permalinks中使您的帖子 URL 更漂亮。 不幸的是,没有改进搜索结果页面外观的选项,默认情况下如下所示: www.zuimoban.com/?s=your-query 如您所见,这看起来不...

    2022-06-27
  9. 限制WooCommerce购物车最低付款金额

    限制WooCommerce购物车最低付款金额,实现代码如下: /** * Set a minimum order amount for checkout source by zuimoban.com */add_action( woocommerce_checkout_process, wc_minimum_order_amount );add_action( woocommerce_before_ca...

    2021-07-31
  10. WooCommerce创建新帐户时通知管理员代码

    WooCommerce创建新帐户时通知管理员代码 /** * Notify admin when a new customer account is created */ add_action( woocommerce_created_customer, woocommerce_created_customer_admin_notification ); function woocommerce_created_custome...

    2021-07-31