theme functions (hooks)

时间:2013-08-27 作者:Swapna

WordPress已经提出了这个问题,但没有答案。我只是想在这个论坛上试试,如果有人知道的话,因为我也有同样的问题。

要使用jquery滑块编辑我的主题,如何转到该脚本?,显示“$主题->挂钩(\'content\\u before\');”在content div标记中。有人能帮忙吗?

我的主题索引。php包含以下内容

<div id="main">

    <?php $theme->hook(\'main_before\'); ?>

    <div id="content">

        <?php $theme->hook(\'content_before\'); ?>

        <?php 
            if (have_posts()) : while (have_posts()) : the_post();
                /**
                 * The default post formatting from the post.php template file will be used.
                 * If you want to customize the post formatting for your homepage:
                 * 
                 *   - Create a new file: post-homepage.php
                 *   - Copy/Paste the content of post.php to post-homepage.php
                 *   - Edit and customize the post-homepage.php file for your needs.
                 * 
                 * Learn more about the get_template_part() function: http://codex.wordpress.org/Function_Reference/get_template_part
                 */

                get_template_part(\'post\', \'homepage\');

            endwhile;

            else :
                get_template_part(\'post\', \'noresults\');
            endif; 

            get_template_part(\'navigation\');
        ?>

        <?php $theme->hook(\'content_after\'); ?>

    </div><!-- #content -->

    <?php get_sidebars(); ?>

    <?php $theme->hook(\'main_after\'); ?>

</div><!-- #main -->

1 个回复
最合适的回答,由SO网友:Bianca Petroiu 整理而成

也许你可以看看这个话题here, 与您的问题相关

结束

相关推荐

hooks & filters and variables

我是updating the codex page example for action hooks, 在游戏中完成一些可重用的功能(最初是针对这里的一些Q@WA)。但后来我遇到了一个以前没有意识到的问题:在挂接到一个函数以修改变量的输出后,我再也无法决定是要回显输出还是只返回它。The Problem: 我可以修改传递给do_action 用回调函数钩住。使用变量修改/添加的所有内容仅在回调函数中可用,但在do_action 在原始函数内部调用。很高兴:我将其修改为一个工作示例,因此您可以将其复制/粘贴