• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP unescape_invalid_shortcodes函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中unescape_invalid_shortcodes函数的典型用法代码示例。如果您正苦于以下问题:PHP unescape_invalid_shortcodes函数的具体用法?PHP unescape_invalid_shortcodes怎么用?PHP unescape_invalid_shortcodes使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了unescape_invalid_shortcodes函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: do_shortcode

function do_shortcode($content, $ignore_html = false)
{
    global $shortcode_tags;
    if (false === strpos($content, '[')) {
        return $content;
    }
    if (empty($shortcode_tags) || !is_array($shortcode_tags)) {
        return $content;
    }
    // Find all registered tag names in $content.
    preg_match_all('@\\[([^<>&/\\[\\]\\x00-\\x20]++)@', $content, $matches);
    $tagnames = array_intersect(array_keys($shortcode_tags), $matches[1]);
    if (empty($tagnames)) {
        return $content;
    }
    $content = do_shortcodes_in_html_tags($content, $ignore_html, $tagnames);
    $pattern = get_shortcode_regex($tagnames);
    $content = preg_replace_callback("/{$pattern}/", 'do_shortcode_tag', $content);
    // Always restore square braces so we don't break things like <!--[if IE ]>
    $content = unescape_invalid_shortcodes($content);
    return $content;
}
开发者ID:AppItNetwork,项目名称:yii2-wordpress-themes,代码行数:22,代码来源:shortcodes.php


示例2: strip_shortcodes

/**
 * Remove all shortcode tags from the given content.
 *
 * @since 2.5
 * @uses $shortcode_tags
 *
 * @param string $content Content to remove shortcode tags.
 * @return string Content without shortcode tags.
 */
function strip_shortcodes( $content ) {
	global $shortcode_tags;

	if (empty($shortcode_tags) || !is_array($shortcode_tags))
		return $content;

	$content = do_shortcodes_in_html_tags( $content, true );

	$pattern = get_shortcode_regex();
	$content = preg_replace_callback( "/$pattern/s", 'strip_shortcode_tag', $content );

	// Always restore square braces so we don't break things like <!--[if IE ]>
	$content = unescape_invalid_shortcodes( $content );
	
	return $content;
}
开发者ID:staylor,项目名称:develop.svn.wordpress.org,代码行数:25,代码来源:shortcodes.php


示例3: strip_shortcodes

/**
 * Remove all shortcode tags from the given content.
 *
 * @since 2.5.0
 *
 * @global array $shortcode_tags
 *
 * @param string $content Content to remove shortcode tags.
 * @return string Content without shortcode tags.
 */
function strip_shortcodes($content)
{
    global $shortcode_tags;
    if (false === strpos($content, '[')) {
        return $content;
    }
    if (empty($shortcode_tags) || !is_array($shortcode_tags)) {
        return $content;
    }
    // Find all registered tag names in $content.
    preg_match_all('@\\[([^<>&/\\[\\]\\x00-\\x20=]++)@', $content, $matches);
    $tags_to_remove = array_keys($shortcode_tags);
    /**
     * Filters the list of shortcode tags to remove from the content.
     *
     * @since 4.7.0
     *
     * @param array  $tag_array Array of shortcode tags to remove.
     * @param string $content   Content shortcodes are being removed from.
     */
    $tags_to_remove = apply_filters('strip_shortcodes_tagnames', $tags_to_remove, $content);
    $tagnames = array_intersect($tags_to_remove, $matches[1]);
    if (empty($tagnames)) {
        return $content;
    }
    $content = do_shortcodes_in_html_tags($content, true, $tagnames);
    $pattern = get_shortcode_regex($tagnames);
    $content = preg_replace_callback("/{$pattern}/", 'strip_shortcode_tag', $content);
    // Always restore square braces so we don't break things like <!--[if IE ]>
    $content = unescape_invalid_shortcodes($content);
    return $content;
}
开发者ID:aaemnnosttv,项目名称:develop.git.wordpress.org,代码行数:42,代码来源:shortcodes.php



注:本文中的unescape_invalid_shortcodes函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP unformat_float函数代码示例发布时间:2022-05-23
下一篇:
PHP unescape函数代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap