分类
为wordpress主题加钩子的方法
1.在wordpress主题找到加钩子的位置
2.加钩子代码如下,如钩子名称为custom_reviews_tab_hook
<?php
// Add your custom hook here
do_action('custom_reviews_tab_hook');
?>
3.在主题function.php 加入钩子内容调用显示如下:
add_action('custom_reviews_tab_hook', 'custom_reviews_tab_content');
function custom_reviews_tab_content() {
// Your custom content or functionality here
echo '<p>This is my custom content below the Reviews tab.</p>';
}