加载小工具WordPress的Java脚本

时间:2011-09-12 作者:andred

我想在侧栏中加载小部件时加载一个特殊的Javascript文件。我应该把我的wp_enqueue_script(...) 线

class controller_widget extends WP_Widget {
    function controller_widget() {
        $this->color = "red";

        $this->dir = plugin_dir_url(__FILE__);
        $widget_ops = array(\'classname\' => \'controller_widget\', \'description\' => __(\'Benutzerfreundlicher Controller zur eingrenzung von Objekten\'));
        $control_ops = array(\'width\' => 350, \'height\' => 400);
        $this->WP_Widget(\'controller_widget\', __(\'Controller\'), $widget_ops, $control_ops);

        // At the moment I load the code here, but I want to proof that it is just loaded when the widget really is shown in the sidebar.
        }
    }

    function widget( $args, $instance ) {...}
}
谢谢大家!

1 个回复
SO网友:MK_Dev

将其放入小部件脚本文件本身。此方法将确保将脚本加载到DOM的适当位置。

结束

相关推荐

posts_nav_link on single.php

情况。。。我使用3个类别。其中一个叫做“新闻”。此页面左侧显示“新闻”类别中的最新帖子,左侧显示同一类别中的10篇最新帖子。还有默认导航。。。«上一页-下一页»。“新闻”类别中的单个帖子看起来与“新闻”页面相同。左边是帖子,右边是最近的10篇帖子。还有导航。。。这就是问题所在。导航按钮链接到:../news/single-post-title/page/2/ 其应链接到:../news/page/2/ 无论如何要解决这个问题?如何将下一页/上一页链接添加到单个页面。php?