text 有用的开放图形函数,用于放置在wordpress站点的functions.php中。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 有用的开放图形函数,用于放置在wordpress站点的functions.php中。相关的知识,希望对你有一定的参考价值。

// Open Graph
add_action('wp_head', 'add_fb_open_graph_tags');
function add_fb_open_graph_tags() {
	if (is_single()) {
		global $post;
		if(get_the_post_thumbnail($post->ID, 'thumbnail')) {
			$thumbnail_id = get_post_thumbnail_id($post->ID);
			$thumbnail_object = get_post($thumbnail_id);
			$image = $thumbnail_object->guid;
		} else {
			$image = ''; // Change this to the URL of the logo you want beside your links shown on Facebook
		}
		//$description = get_bloginfo('description');
		$description = my_excerpt( $post->post_content, $post->post_excerpt );
		$description = strip_tags($description);
		$description = str_replace("\"", "'", $description);
?>
<meta property="og:title" content="<?php the_title(); ?>" />
<meta property="og:type" content="article" />
<meta property="og:image" content="<?php echo $image; ?>" />
<meta property="og:url" content="<?php the_permalink(); ?>" />
<meta property="og:description" content="<?php echo $description ?>" />
<meta property="og:site_name" content="<?php echo get_bloginfo('name'); ?>" />
<?php 	}
}

以上是关于text 有用的开放图形函数,用于放置在wordpress站点的functions.php中。的主要内容,如果未能解决你的问题,请参考以下文章

text 10个用于在Linux中收集系统和硬件信息的有用命令

(专题四)02 图形的辅助说明

text 用于构建库和测试套件的有用cmake

《R语言实战》自学笔记17-图形文本标注

图形化界面扫雷(C语言+easyx实现,多图教学)

在matlab中的text函数的用法?