我对那个插件不太了解,但它applies filters to both the_content
and the_excerpt
, 这对我来说似乎很合理。我不得不假设你的主题在某种程度上绕过了索引列表中的过滤器。我只能猜测它在做什么,但您可以在get_the_content
和get_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);
如果这不起作用,我需要看看你的主题在做什么。
也有可能是其他插件在干扰。