wordpress教程:meta标签的各种语法

2024年05月30日 建站教程

//文章标题
<meta property="og:title" content="<?php the_title(); ?>">
//当前url链接
<meta property="og:url" content="<?php echo get_permalink(); ?>">
//文章描述
<meta property="og:description" content="<?php echo get_the_excerpt(); ?>">
//文章发布时间
<meta property="article:published_time" content="<?php the_time('Y-n-d'); ?>" />
//作者
<meta property="article:author" content="<?php bloginfo('name'); ?>" />
//文章标题
<title><?php the_title(); ?>-
<?php foreach((get_the_category()) as $category){echo $category->cat_name;} ?>-
<?php bloginfo('name'); ?></title>
//文章关键词
<meta name="keywords" content="<?php tagtext();?>" />
//文章描述
<meta name="description" content="<?php echo get_the_excerpt(); ?>" />

tagtext()的用法可以参考wordpress获取Tag标签不带超链接

本文链接:http://so.lmcjl.com/news/5597/

展开阅读全文
相关内容