用于WordPress的LaTeX在循环中剥离代码

时间:2013-12-15 作者:Narek

已安装LaTeX for WordPress 并添加了帖子:

一些文本$$\\alpha+\\beta\\geq\\gamma$$其他文本。

我在贴子上看到了这个等式,但它在循环中被剥离了。

我怎样才能看到循环中的方程呢?

1 个回复
SO网友:s_ha_dum

我对那个插件不太了解,但它applies filters to both the_content and the_excerpt, 这对我来说似乎很合理。我不得不假设你的主题在某种程度上绕过了索引列表中的过滤器。我只能猜测它在做什么,但您可以在get_the_contentget_the_exceprt 而且这可能会有所帮助(但不能保证)。

// in functions.php, at least for testing
$latex_object = new latex_for_wp;
add_filter(\'get_the_excerpt\', array($latex_object, \'parseTex\'), 10001);
add_filter(\'get_the_excerpt\', array($latex_object, \'parseTex\'), 10001);
如果这不起作用,我需要看看你的主题在做什么。

也有可能是其他插件在干扰。

结束

相关推荐

1 post, 2 templates

我想能够呈现两种不同的风格(2个模板)后。例如,假设我有post ID 133,我希望有两个url来访问它,因此它会呈现不同模板应用的位置。洛雷姆。com/render1/133。com/render2/1333,例如。。。或者可能是这样的:洛雷姆。com/post/133和lorem。com/post/133?模板=2您将如何操作?