php 使用此功能将Gists嵌入到您的博客帖子中

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 使用此功能将Gists嵌入到您的博客帖子中相关的知识,希望对你有一定的参考价值。

**
 * Usage:
 * Paste a gist link into a blog post or page and it will be embedded eg:
 * https://gist.github.com/2926827
 *
 * If a gist has multiple files you can select one using a url in the following format:
 * https://gist.github.com/2926827?file=embed-gist.php
 */
wp_embed_register_handler( 'gist', '/https:\/\/gist\.github\.com\/(\d+)(\?file=.*)?/i', 'wp_embed_handler_gist' );

function wp_embed_handler_gist( $matches, $attr, $url, $rawattr ) {

	$embed = sprintf(
			'<script src="https://gist.github.com/%1$s.js%2$s"></script>',
			esc_attr($matches[1]),
			esc_attr($matches[2])
			);

	return apply_filters( 'embed_gist', $embed, $matches, $attr, $url, $rawattr );
}

以上是关于php 使用此功能将Gists嵌入到您的博客帖子中的主要内容,如果未能解决你的问题,请参考以下文章

PHP 哪个搜索引擎将用户引荐到您的网站。显示使用的关键字。

用php发布数据[重复]

php [WooCommerce Instagram]如果您想将其更改为缩略图或其他图像尺寸,请将此代码添加到您的“自定义功能”区域

PHP 将任何网站图像保存到您的服务器

PHP 将feedburner计数添加到您的站点 - 仅限文本

在wordpress网站中添加“加入群组”按钮