在里面single.php
, 在循环内,代码显示文本输出。
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( \'content\', get_post_format() ); ?>
$content = get_the_content();
$content = apply_filters(\'the_content\', $content);
echo wp_strip_all_tags($content);
$Temp_text=wp_strip_all_tags($content);
?>
有什么方法可以使用
$Temp_text
在里面
functions.php
.