将变量传递给包含中的另一个变量可能吗?

问题描述 投票:0回答:2

我正在为自己创建一个新站点,并且好奇是否可以将变量传递给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();
  }
?>

任何帮助都会很棒!!

php wordpress wordpress-theming
2个回答
1
投票

把它放在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); ?>

0
投票

我是个白痴。我的不良代码读了

wp_trim_words(wp_strip_all_tags( get_the_content(), $wordcount ))

什么时候应该

wp_strip_all_tags(wp_trim_words( get_the_content(), $wordcount ))
© www.soinside.com 2019 - 2024. All rights reserved.