我正在努力做到这一点,以便我的帖子在2(或任意数量)的段落后插入一个引号。对于我正在使用的网站,引号是它们自己的字段,因此我不能简单地将其分配给blockquote标签。因此,我将以下解决方案拼凑在一起:
function insert_pullquote( $text ) {
if ( is_singular('review') ) :
$quote_text = get_template_part( 'pullquote' );
$split_by = "\n\n";
$insert_after = 2; //number of paragraphs
// make array of paragraphs
$paragraphs = explode( $split_by, $text);
// if array elements are less than $insert_after set the insert point at the end
$len = count( $paragraphs );
if ( $len < $insert_after ) $insert_after = $len;
// insert $ads_text into the array at the specified point
array_splice( $paragraphs, $insert_after, 0, $quote_text );
// loop through array and build string for output
foreach( $paragraphs as $paragraph ) {
$new_text .= $paragraph;
}
return $new_text;
endif;
return $text;
}
add_filter('the_content', 'insert_pullquote');
所以,好消息是它按我的意愿显示了引号(see here),但是在两段之后却没有。我正在使用get_template_part('pullquote');的Wordpress内置函数,该函数本身使用echo(types_render_field('pullquote'));从字段中拉出。如果我只输入纯文本,则可以正常工作。我究竟做错了什么?我有点像PHP混战者,所以请您忍受明显的错误。谢谢!
答案 0 :(得分:0)
$new_text
的范围在循环之内。
您需要
$new_text=""; // declare out side loop
foreach( $paragraphs as $paragraph ) {
$new_text .= $paragraph;
}
return $new_text; // now is available here.
您也可以使用
$new_text =implode($paragraphs); // to match your explode :-)