是否在术语说明中使用快捷代码?

时间:2010-09-17 作者:Sergio Soares

有人知道在术语描述中使用短代码的方法吗?这是可能的吗?

2 个回复
SO网友:Tom Wright

我认为以下措施应该奏效:

<?php
  $content = apply_filters(\'the_content\', $content);
  $content = str_replace(\']]>\', \']]&gt;\', $content);
?>
您可以将其放在挂钩函数的模板中。

我抄袭了这个herehere, 其目的是从get_the_content() (原始)以等效方式the_content() (其中包括:解析的短代码)。

祝你好运

SO网友:Rarst

我不确定这是否是唯一需要的代码,但Hybrid有以下过滤器模块:

add_filter( \'term_description\', \'do_shortcode\' );
如果这不起作用,我将尝试更彻底地检查代码。

结束

相关推荐