我需要在Wordpress中包含页面内容之前添加一段代码。 但是添加:
add_filter( 'the_content', 'custom_function' );
在标题和内容之间添加
并不起作用add_filter( 'the_title', 'custom_function' );
将其添加到我不需要它的页面标题等地方。
是不是有像?
add_filter( 'before_page', 'custom_function' );
答案 0 :(得分:1)
您尝试做的事情取决于主题。像Genesis这样的主题有它们,有些没有。要查看您的是否在模板页面上检查了add_action。
您也可以自己以adding an action为主题。无论何时您需要在add_action('before_page');
中插入内容,您都可以采取行动。