我最近升级到了3.3.1版本,并注意到一个很好的特性,这对于我们不懂Wordpress的客户来说是非常好的—创建一个如何使用Wordpress的教程。
我已经使用Yoast SEO插件很长一段时间了,他们添加了一个巡更功能,当您单击下一步按钮时,它会浏览各种功能(请参见屏幕截图):
是否可以创建Wordpress的自定义教程,介绍如何添加页面、帖子等,并创建我们自己的帮助内容。
我有一套我倾向于使用的标准插件,因此教程(如果可能的话)需要跳过标准Wordpress设置以及所有不同的插件。
更新时间:
我在网络上搜索了一下,找到了以下代码。这将创建一个一次性指针,您可以将自定义内容放入其中。唯一的问题是每次重新加载时都会出现弹出窗口,即使它被取消(有没有办法提高它的可用性?)而且这是一个一次性的窗口,而不是一次旅行。
只需使用Firebug找到要将指针附加到的div。
/*
Display custom WordPress Dashboard Pointers alerts
Usage: Modify the $pointer_content message to the message you wished displayed
*/
add_action(\'admin_enqueue_scripts\', \'enqueue_custom_admin_scripts\');
function enqueue_custom_admin_scripts() {
wp_enqueue_style(\'wp-pointer\');
wp_enqueue_script(\'wp-pointer\');
add_action(\'admin_print_footer_scripts\', \'custom_print_footer_scripts\' );
}
function custom_print_footer_scripts() {
$pointer_content = \'<h3>The Works http://www.teamworksdesign.com</h3>\';
$pointer_content .= \'<p>Welcome to your custom WordPress installation. Please navigate to the settings page to change your site preferences</p>\';
?>
<script type="text/javascript">
//<![CDATA[
jQuery(document).ready( function($) {
$(\'#menu-posts-events\').pointer({
content: \'<?php echo $pointer_content; ?>\',
position: \'left\',
close: function() {
// This function is fired when you click the close button
}
}).pointer(\'open\');
});
//]]>
</script>
<?php
}