如果这个问题在这里得到了回答,我很抱歉,但我找不到它。是否可以更改[库]短代码的HTML输出(无插件)?我想显示缩略图作为另一种外观。这可能吗?谢谢
更改[图库]快捷代码的输出
1 个回复
SO网友:s_ha_dum
这个source for the gallery shortcode 在中wp-includes/media.php
. 那里有几个钩子可能对你有用。如果不确切知道你想做什么,就不可能更具体。
如果这不起作用,那么你可以remove the shortcode:
remove_shortcode(\'gallery\');
并添加另一个具有所需更改的库短代码。Just copy the function 到functions.php
或者,将其重命名、编辑并添加回插件文件add_shortcode(\'gallery\', \'whatever_you_named_your_function\');
结束