php 小部件中的小部件短代码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 小部件中的小部件短代码相关的知识,希望对你有一定的参考价值。

add_filter('widget_text', 'do_shortcode');

add_shortcode('read-more', 'shortcode_read_more');
function shortcode_read_more($atts){
	global $post;
	extract(shortcode_atts(array('url' => get_permalink($post->ID),'text' => 'Button sample'), $atts));
	return '<div class="holder"><a class="button" href="'.$url.'">'.$text.'</a></div>';
}
function filter_site_url($text) {
	return str_replace('[site-url]',get_bloginfo('url'), $text);
}
add_filter('the_content', 'filter_site_url',1);
add_filter('get_the_content', 'filter_site_url');
add_filter('widget_text', 'filter_site_url');

以上是关于php 小部件中的小部件短代码的主要内容,如果未能解决你的问题,请参考以下文章

php 在文本小部件中启用短代码。

php 带有图像场图像小部件的小部件

Kivy 如何访问子小部件中的小部件

允许在WordPress小部件中使用短代码

php 覆盖事件列表小部件的/短代码的“查看更多...”链接(也可能影响其他地方)* *对于https://theeventscalendar.com/suppor

php 覆盖事件列表小部件的/短代码的“查看更多...”链接(也可能影响其他地方)* *对于https://theeventscalendar.com/suppor