ฉันเพิ่งอัพเกรดเป็นเวอร์ชั่น 3.3.1 และสังเกตเห็นคุณสมบัติที่ดีซึ่งจะยอดเยี่ยมสำหรับลูกค้าที่ไม่ใช้ Wordpress ของเรา - สร้างทัวร์ชมวิธีการใช้ Wordpress
ฉันใช้ปลั๊กอิน Yoast SEO มาเป็นเวลานานและพวกเขาได้เพิ่มคุณลักษณะทัวร์ซึ่งเมื่อคุณคลิกปุ่มถัดไปมันจะผ่านคุณสมบัติต่าง ๆ (ดูภาพหน้าจอ):
เป็นไปได้หรือไม่ที่จะสร้างการแนะนำการท่องเที่ยวของ Wordpress ในการเพิ่มหน้าโพสต์ ฯลฯ และสร้างเนื้อหาความช่วยเหลือของเราเองเพื่อไปกับมัน
ฉันมีชุดปลั๊กอินมาตรฐานที่ฉันมักจะใช้ดังนั้นทัวร์ (ถ้าเป็นไปได้) จะต้องข้ามทั้งการตั้งค่า Wordpress มาตรฐานรวมถึงปลั๊กอินต่าง ๆ ทั้งหมด
UPDATE:
ฉันขุดไปทั่วเว็บและพบรหัสต่อไปนี้ สิ่งนี้จะสร้างตัวชี้ off หนึ่งตัวที่คุณสามารถใส่เนื้อหาที่กำหนดเองปัญหาเดียวก็คือป๊อปอัปปรากฏขึ้นพร้อมกับการโหลดซ้ำทุกครั้งแม้ในขณะที่ถูกไล่ออก (มีวิธีในการปรับปรุงการใช้งานนี้หรือไม่) มากกว่าทัวร์
เพียงใช้ 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
}