我正在为自己创建一个新站点,并且好奇是否可以将变量传递给include中的另一个变量。我所拥有的是包含有条件的摘录。如果没有摘录,那么它将获取the_content并删除任何URL。我只想传递一个字数。这就是我所拥有的。
如你所见,我试图通过$wordcount
主要模板:
<?php
$wordcount = '10';
include(locate_template('loop-templates/content-excerpt.php'));
?>
包括:
<?php
if ( ! has_excerpt() ) {
$content = wp_trim_words(wp_strip_all_tags( get_the_content(), $wordcount )) ;
$regex = "@(https?://([-\w\.]+[-\w])+(:\d+)?(/([\w/_\.#-]*(\?\S+)?[^\.\s])?)?)@";
echo preg_replace($regex, ' ', $content);
}else {
the_excerpt();
}
?>
任何帮助都会很棒!!
把它放在function.php中
function print_copntent($wordcount){
if ( ! has_excerpt() ) {
$content = wp_trim_words(wp_strip_all_tags( get_the_content(), $wordcount )) ;
$regex = "@(https?://([-\w\.]+[-\w])+(:\d+)?(/([\w/_\.#-]*(\?\S+)?[^\.\s])?)?)@";
echo preg_replace($regex, ' ', $content);
}else {
the_excerpt();
}
}
在模板文件中调用该函数;
<?php print_content(10); ?>
我是个白痴。我的不良代码读了
wp_trim_words(wp_strip_all_tags( get_the_content(), $wordcount ))
什么时候应该
wp_strip_all_tags(wp_trim_words( get_the_content(), $wordcount ))