Video tutorials in Dashboard

时间:2012-03-22 作者:urok93

我想在wordpress仪表板中插入一些视频教程,而不是为客户端创建pdf手册,因为我认为它们对这个客户端来说更容易,我该怎么做呢?我想在仪表板上放4个视频。为了保护他们的隐私,哪里是接待他们的最佳场所?

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

我对我的客户就是这么做的
PDF更难组装&;无论如何,没有人读F手册:)

如果您允许我离题一点,我建议您谈谈电子学习和视频教程:Salman Khan: Let\'s use video to reinvent education.

处理隐私问题YouTube 提供two possibilities.

私人视频

如果您的视频设置为“私人”,则只有您和您邀请观看视频的最多50名其他用户才能观看视频。视频不会出现在您的频道、搜索结果或播放列表等中。

您不能与超过50个其他用户共享私人视频

观看视频不需要YouTube帐户(如果有人向您发送视频链接,您可以看到未列出的视频)

  • 中没有50人的共享限制Vimeo, 使用高级帐户,您可以拥有未列出/不可见的视频,并且该视频只能在您可以设置的域中播放。

    最近发现此插件:Secure HTML5 Video Player, 但尚未测试。

    录制视频的提示,在全屏模式下使用浏览器录制,不带地址栏、书签栏,以及任何栏
    这样,如果您在浏览器窗口中填充视频,似乎您实际上是在操纵WordPress仪表板。

    将教程显示为仪表板小部件此示例代码使用YouTube,这是我发布教程的正常场所,通常未列出,但有时是私有的。

    add_action(\'wp_dashboard_setup\', \'wpse_46445_dashboard_widget\');
    
    /*
     * Builds the Custom Dashboard Widget
     *
     */
    function wpse_46445_dashboard_widget()
    {
        $the_widget_title = \'Site Tutorials\';
        wp_add_dashboard_widget(\'dashboard_tutorials_widget\', $the_widget_title, \'wpse_46445_add_widget_content\');
    }
    
    /*
     * Prints the Custom Dashboard Widget content
     *
     */
    function wpse_46445_add_widget_content() 
    {
        $tutorial_1 = wpse_46445_make_youtube_thumb_link(
            array(
                \'id\'=>\'s-c_urzTWYQ\', 
                \'color\'=>\'#FF6645\', 
                \'title\' => \'Video Tutorial\', 
                \'button\' => \'Watch now\'
            )
        );
    
        $tutorial_2 = wpse_46445_make_youtube_thumb_link(
            array(
                \'id\'=>\'HIq9kkHbMCA\', 
                \'color\'=>\'#FF6645\', 
                \'title\' => \'Tutorial em Vídeo\', 
                \'button\' => \'Ver agora\'
            )
        );
    
        $html = <<<HTML
        <h4 style="text-align:center">How to render videos for web using YouTube horsepower</h4>
        {$tutorial_1}
        <hr />
        <h4 style="text-align:center">Como renderizar para web videos usando o poder do YouTube</h4>
        {$tutorial_2}
    HTML;
    
        echo $html;
    }
    
    /*
     * Makes a thumbnail with YouTube official image file 
     * the video links opens the video in the "watch_popup" mode (video fills full browser window)
     * 
     */
    function wpse_46445_make_youtube_thumb_link($atts, $content = null) 
    {
        $img   = "http://i3.ytimg.com/vi/{$atts[\'id\']}/default.jpg";
        $yt    = "http://www.youtube.com/watch_popup?v={$atts[\'id\']}";
        $color = ($atts[\'color\'] && $atts[\'color\'] != \'\') ? \';color:\' . $atts[\'color\'] : \'\';
    
        $html  = <<<HTML
            <div class="poptube" style="text-align:center;margin-bottom:40px">
            <h2 class="poptube" style="text-shadow:none;padding:0px{$color}">{$atts[\'title\']}</h2>
            <a href="{$yt}" target="_blank"><img class="poptube" src="{$img}" style="margin-bottom:-19px"/></a><br />
            <a class="poptube button-secondary" href="{$yt}" target="_blank">{$atts[\'button\']}</a></div>
    HTML;
    
        return $html;
    }
    
    仪表板:大写字母=wp admin/index。php仪表板:小写=WordPress后端管理区域

  • 结束

    相关推荐

    插件:Google Analytics for Dashboard错误-时间戳与当前时间相差太远

    有人用过Google Analytics for Dashboard 插件?我已经成功安装了它,但每当我尝试使用开始登录过程按钮将其链接到我的Google帐户时,我总是收到一条奇怪的消息,如下所示:Timestamp is too far from current time: <a Unix timestamp here> 我正在使用WordPress 3.1.3。知道这里发生了什么吗?谢谢,我