我对我的客户就是这么做的
PDF更难组装&;无论如何,没有人读F手册:)
如果您允许我离题一点,我建议您谈谈电子学习和视频教程:Salman Khan: Let\'s use video to reinvent education.
处理隐私问题YouTube 提供two possibilities.
私人视频
如果您的视频设置为“私人”,则只有您和您邀请观看视频的最多50名其他用户才能观看视频。视频不会出现在您的频道、搜索结果或播放列表等中。
您不能与超过50个其他用户共享私人视频要观看私人视频,您的联系人必须已经有YouTube帐户私人视频的缩略图将未列出,而视频本身将是私人的。缩略图不会出现在YouTube的任何公共空间(如搜索结果、频道或浏览页面),未列出的视频是不同类型的私人视频。未列出意味着只有知道视频链接的人才能查看它(例如您向其发送链接的朋友或家人)。未列出的视频不会出现在YouTube的任何公共空间(如搜索结果、频道或浏览页面)。未列出的视频与私人视频的不同之处在于:
观看视频不需要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后端管理区域