최근에 버전 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
}