php 在the_content()之前或之后添加HTML或Shortcode - WordPress mu-plugin

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 在the_content()之前或之后添加HTML或Shortcode - WordPress mu-plugin相关的知识,希望对你有一定的参考价值。

<?php
// This particular example adds Hustle Social Sharing shortcode after content without editing template files on single posts/pages only.
function jmorris_before_after($content) {
	    $beforecontent = '';
	    if ( is_single() ) {
	    	$aftercontent = '[wd_hustle_ss id="jmorris-online"]';
	    } else {
	    	$aftercontent = '';
	    }
	    $fullcontent = $beforecontent . $content . $aftercontent;
	    
	    return $fullcontent;
}
add_filter('the_content', 'jmorris_before_after');

以上是关于php 在the_content()之前或之后添加HTML或Shortcode - WordPress mu-plugin的主要内容,如果未能解决你的问题,请参考以下文章

php the_content()之前的缩略图

php 将Featherlight JS添加到WordPress发布the_content

php Jan Dembowski过滤the_content()以添加Pinterest按钮代码。

Wordpress:完全替换the_content

php echo the_content

PHP 通过单词限制WordPress the_content