function
thsp_enqueue_pointer_script_style(
$hook_suffix
) {<br />
$enqueue_pointer_script_style
= false;<br />
$dismissed_pointers
=
explode
(
','
, get_user_meta( get_current_user_id(),
'dismissed_wp_pointers'
, true ) );<br />
if
( !in_array(
'thsp_settings_pointer'
,
$dismissed_pointers
) ) {<br />
$enqueue_pointer_script_style
= true;<br />
add_action(
'admin_print_footer_scripts'
,
'thsp_pointer_print_scripts'
);<br />
}<br />
if
(
$enqueue_pointer_script_style
) {<br />
wp_enqueue_style(
'wp-pointer'
);<br />
wp_enqueue_script(
'wp-pointer'
);<br />
}<br />
}<br />
add_action(
'admin_enqueue_scripts'
,
'thsp_enqueue_pointer_script_style'
);<br />
function
thsp_pointer_print_scripts() {<br />
$pointer_content
= "<h3>س</h3>";<br />
$pointer_content
.= "<p>همه ی دنیای یک وردپرس کار </p>";<br />
?><br />
<script type="text/javascript"><br />
jQuery(document).ready(
function
($) {<br />
$(
'#dashboard_right_now'
).pointer({<br />
content:
'<?php echo $pointer_content; ?>'
,<br />
position: {<br />
edge:
'right'
,<br />
align:
'center'
<br />
},<br />
pointerWidth: 350,<br />
close:
function
() {<br />
$.post( ajaxurl, {<br />
pointer:
'thsp_settings_pointer'
,<br />
action:
'dismiss-wp-pointer'
<br />
});<br />
}<br />
}).pointer(
'open'
);<br />
});<br />
</script><br />
<?php } ?>