問題描述
我的目標是為管理區域的用户創建一個教程。為了實現這一點,我使用 WP 核心中提供的管理指針。我的目標:
我幾乎在那裏我到目前為止…
入隊 wp-pointer 腳本:
add_action( 'admin_enqueue_scripts', 'custom_admin_pointers_header' );
function custom_admin_pointers_header() {
if ( custom_admin_pointers_check() ) {
add_action( 'admin_print_footer_scripts', 'custom_admin_pointers_footer' );
wp_enqueue_script( 'wp-pointer' );
wp_enqueue_style( 'wp-pointer' );
}
}
助手功能,包括條件檢查和腳註腳本:
function custom_admin_pointers_check() {
$admin_pointers = custom_admin_pointers();
foreach ( $admin_pointers as $pointer => $array ) {
if ( $array['active'] )
return true;
}
}
function custom_admin_pointers_footer() {
$admin_pointers = custom_admin_pointers();
?>
<script type="text/javascript">
/* <![CDATA[ */
( function($) {
<?php
foreach ( $admin_pointers as $pointer => $array ) {
if ( $array['active'] ) {
?>
$( '<?php echo $array['anchor_id']; ?>' ).pointer( {
content: '<?php echo $array['content']; ?>',
position: {
edge: '<?php echo $array['edge']; ?>',
align: '<?php echo $array['align']; ?>'
},
close: function() {
$.post( ajaxurl, {
pointer: '<?php echo $pointer; ?>',
action: 'dismiss-wp-pointer'
} );
}
} ).pointer( 'open' );
<?php
}
}
?>
} )(jQuery);
/* ]]> */
</script>
<?php
}
現在我們準備把數組的指針放在一起
function custom_admin_pointers() {
$dismissed = explode( ',', (string) get_user_meta( get_current_user_id(), 'dismissed_wp_pointers', true ) );
$version = '1_0'; // replace all periods in 1.0 with an underscore
$prefix = 'custom_admin_pointers' . $version . '_';
$new_pointer_content = '<h3>' . __( 'Add New Item' ) . '</h3>';
$new_pointer_content .= '<p>' . __( 'Easily add a new post, media item, link, page or user by selecting from this drop down menu.' ) . '</p>';
$story_pointer_content = '<h3>' . __( 'Another info' ) . '</h3>';
$story_pointer_content .= '<p>' . __( 'Lorem ipsum...' ) . '</p>';
return array(
$prefix . 'new_items' => array(
'content' => $new_pointer_content,
'anchor_id' => '#wp-admin-bar-new-content',
'edge' => 'top',
'align' => 'left',
'active' => ( ! in_array( $prefix . 'new_items', $dismissed ) )
),
$prefix.'story_cover_help' => array(
'content' => $story_pointer_content,
'anchor_id' => '#save-post',
'edge' => 'top',
'align' => 'right',
'active' => ( ! in_array( $prefix . 'story_cover_help', $dismissed ) )
)
);
}
代碼是 self-explanatory 。我們可以通過擴展數組來輕鬆添加更多的指針。 WP4 中的一切都很好。
現在問題:所有彈出的指針同時出現,這使得教程的界面差。
我的目標是逐個顯示指針,並允許用户點擊下一步按鈕瀏覽本教程。下一個按鈕應該打開下一個指針並關閉最後一個指針。
我該怎麼做?
最佳解決方案
您在所有指針對象上調用.pointer( 'open' ); JavaScript 函數,所以並不奇怪所有指針在同一時間出現…
也就是説,我不明白為什麼你從 custom_admin_pointers()返回所有指針 (甚至是 non-active),然後添加一個附加的函數來檢查是否有一些活動指針和一個檢查指針循環 (if ( $array['active'] ) {) 來選擇添加 javascript 指針或不。只是返回只有活動指針不簡單?
此外,您在所有管理頁面上添加了 JavaScript,是不是太多?還要考慮一些像”#save-post” 這樣的元素只能在新的帖子頁面上使用,所以不是隻能在新的頁面中添加指針?
最後,如何將 JavaScript 與 PHP 混淆,我想你應該考慮使用 wp_localize_script 將數據傳遞給 javascript 。
計劃:
-
將 PHP 中的指針移動到一個單獨的文件中,這樣可以很容易地編輯,也可以從 PHP 代碼中刪除標記,所有這些都可以更加可讀和維護
-
在指針配置中,添加一個屬性”where”,將用於設置哪個管理頁面應該出現一個彈出窗口:
post-new.php,index.php… -
編寫一個類,它將處理加載,解析和過濾指針信息
-
寫一些 js 的好處,這將有助於我們將默認的”Remove” 按鈕更改為”Next”
#4 可以 (可能) 很容易地知道指針插件,但不是我的情況。所以我將使用一般的 jQuery 代碼來獲取結果,如果有人可以改進我的代碼,我會欣賞。
Edit
我編輯的代碼 (主要是 js),因為有不同的事情我沒有考慮:一些指針可能被添加到同一個錨點,或者相同的指針可以添加到 non-existing 或 non-visible 錨點。在所有這些情況下,以前的代碼沒有工作,新版本似乎很好地解決了這個問題。
我還設置了一個 Gist,其中包含了我用來測試的所有代碼。
我們從點#1 和#2 開始:創建一個名為 pointers.php 的文件,並在其中寫:
<?php
$pointers = array();
$pointers['new-items'] = array(
'title' => sprintf( '<h3>%s</h3>', esc_html__( 'Add New Item' ) ),
'content' => sprintf( '<p>%s</p>', esc_html__( 'Easily add a new post..' ) ),
'anchor_id' => '#wp-admin-bar-new-content',
'edge' => 'top',
'align' => 'left',
'where' => array( 'index.php', 'post-new.php' ) // <-- Please note this
);
$pointers['story_cover_help'] = array(
'title' => sprintf( '<h3>%s</h3>', esc_html__( 'Another info' ) ),
'content' => sprintf( '<p>%s</p>', esc_html__( 'Lore ipsum....' ) ),
'anchor_id' => '#save-post',
'edge' => 'top',
'align' => 'right',
'where' => array( 'post-new.php' ) // <-- Please note this
);
// more pointers here...
return $pointers;
所有指針配置都在這裏。當您需要更改某些內容時,只需打開此文件並進行編輯即可。
請注意”where” 屬性,該屬性是指針應該可用的頁面數組。
如果要在插件生成的頁面中顯示指針,請查找 public function filter( $page ) { 下面列出的這一行,並立即添加 die($page); 。然後打開相應的插件頁面,並在 where 屬性中使用該字符串。
好的,現在點#3 。
在寫課程之前,我只想編寫一個界面:在那裏我將發表評論,以便您能更好地瞭解什麼類將做。
<?php
interface PointersManagerInterface {
/**
* Load pointers from file and setup id with prefix and version.
* Cast pointers to objects.
*/
public function parse();
/**
* Remove from parse pointers dismissed ones and pointers
* that should not be shown on given page
*
* @param string $page Current admin page file
*/
public function filter( $page );
}
我想應該很清楚現在我們來寫這個類,它將包含從接口加構造函數的 2 種方法。
<?php namespace GM;
class PointersManager implements PointersManagerInterface {
private $pfile;
private $version;
private $prefix;
private $pointers = array();
public function __construct( $file, $version, $prefix ) {
$this->pfile = file_exists( $file ) ? $file : FALSE;
$this->version = str_replace( '.', '_', $version );
$this->prefix = $prefix;
}
public function parse() {
if ( empty( $this->pfile ) ) return;
$pointers = (array) require_once $this->pfile;
if ( empty($pointers) ) return;
foreach ( $pointers as $i => $pointer ) {
$pointer['id'] = "{$this->prefix}{$this->version}_{$i}";
$this->pointers[$pointer['id']] = (object) $pointer;
}
}
public function filter( $page ) {
if ( empty( $this->pointers ) ) return array();
$uid = get_current_user_id();
$no = explode( ',', (string) get_user_meta( $uid, 'dismissed_wp_pointers', TRUE ) );
$active_ids = array_diff( array_keys( $this->pointers ), $no );
$good = array();
foreach( $this->pointers as $i => $pointer ) {
if (
in_array( $i, $active_ids, TRUE ) // is active
&& isset( $pointer->where ) // has where
&& in_array( $page, (array) $pointer->where, TRUE ) // current page is in where
) {
$good[] = $pointer;
}
}
$count = count( $good );
if ( $good === 0 ) return array();
foreach( array_values( $good ) as $i => $pointer ) {
$good[$i]->next = $i+1 < $count ? $good[$i+1]->id : '';
}
return $good;
}
}
代碼非常簡單,並且準確地界定了界面。
但是,該類本身不做任何事情,我們需要一個鈎子來實例化類 nad 啓動 2 個方法傳遞適當的參數。
'admin_enqueue_scripts'對我們的範圍是完美的:我們將可以訪問當前的管理頁面,我們還可以排隊所需的腳本和樣式。
add_action( 'admin_enqueue_scripts', function( $page ) {
$file = plugin_dir_path( __FILE__ ) . 'pointers.php';
// Arguments: pointers php file, version (dots will be replaced), prefix
$manager = new PointersManager( $file, '5.0', 'custom_admin_pointers' );
$manager->parse();
$pointers = $manager->filter( $page );
if ( empty( $pointers ) ) { // nothing to do if no pointers pass the filter
return;
}
wp_enqueue_style( 'wp-pointer' );
$js_url = plugins_url( 'pointers.js', __FILE__ );
wp_enqueue_script( 'custom_admin_pointers', $js_url, array('wp-pointer'), NULL, TRUE );
// data to pass to javascript
$data = array(
'next_label' => __( 'Next' ),
'close_label' => __('Close'),
'pointers' => $pointers
);
wp_localize_script( 'custom_admin_pointers', 'MyAdminPointers', $data );
} );
沒有什麼特別之處:只需使用類獲取指針數據,如果某些指針通過過濾器入隊樣式和腳本。然後將指針數據傳遞到腳本,並將該按鈕的本地化”Next” 標籤。
好的,現在”hardest” 部分:js 。再次,我想強調,我不知道 WordPress 使用的指針插件,所以我做的代碼可以做得更好,如果有人知道,但是我的代碼做它的工作和原始的 – 這並沒有那麼糟糕。
( function($, MAP) {
$(document).on( 'MyAdminPointers.setup_done', function( e, data ) {
e.stopImmediatePropagation();
MAP.setPlugin( data ); // open first popup
} );
$(document).on( 'MyAdminPointers.current_ready', function( e ) {
e.stopImmediatePropagation();
MAP.openPointer(); // open a popup
} );
MAP.js_pointers = {}; // contain js-parsed pointer objects
MAP.first_pointer = false; // contain first pointer anchor jQuery object
MAP.current_pointer = false; // contain current pointer jQuery object
MAP.last_pointer = false; // contain last pointer jQuery object
MAP.visible_pointers = []; // contain ids of pointers whose anchors are visible
MAP.hasNext = function( data ) { // check if a given pointer has valid next property
return typeof data.next === 'string'
&& data.next !== ''
&& typeof MAP.js_pointers[data.next].data !== 'undefined'
&& typeof MAP.js_pointers[data.next].data.id === 'string';
};
MAP.isVisible = function( data ) { // check if anchor for given pointer is visible
return $.inArray( data.id, MAP.visible_pointers ) !== -1;
};
// given a pointer object, return its the anchor jQuery object if available
// otherwise return first available, lookin at next property of subsequent pointers
MAP.getPointerData = function( data ) {
var $target = $( data.anchor_id );
if ( $.inArray(data.id, MAP.visible_pointers) !== -1 ) {
return { target: $target, data: data };
}
$target = false;
while( MAP.hasNext( data ) && ! MAP.isVisible( data ) ) {
data = MAP.js_pointers[data.next].data;
if ( MAP.isVisible( data ) ) {
$target = $(data.anchor_id);
}
}
return MAP.isVisible( data )
? { target: $target, data: data }
: { target: false, data: false };
};
// take pointer data and setup pointer plugin for anchor element
MAP.setPlugin = function( data ) {
if ( typeof MAP.last_pointer === 'object') {
MAP.last_pointer.pointer('destroy');
MAP.last_pointer = false;
}
MAP.current_pointer = false;
var pointer_data = MAP.getPointerData( data );
if ( ! pointer_data.target || ! pointer_data.data ) {
return;
}
$target = pointer_data.target;
data = pointer_data.data;
$pointer = $target.pointer({
content: data.title + data.content,
position: { edge: data.edge, align: data.align },
close: function() {
// open next pointer if it exists
if ( MAP.hasNext( data ) ) {
MAP.setPlugin( MAP.js_pointers[data.next].data );
}
$.post( ajaxurl, { pointer: data.id, action: 'dismiss-wp-pointer' } );
}
});
MAP.current_pointer = { pointer: $pointer, data: data };
$(document).trigger( 'MyAdminPointers.current_ready' );
};
// scroll the page to current pointer then open it
MAP.openPointer = function() {
var $pointer = MAP.current_pointer.pointer;
if ( ! typeof $pointer === 'object' ) {
return;
}
$('html, body').animate({ // scroll page to pointer
scrollTop: $pointer.offset().top - 30
}, 300, function() { // when scroll complete
MAP.last_pointer = $pointer;
var $widget = $pointer.pointer('widget');
MAP.setNext( $widget, MAP.current_pointer.data );
$pointer.pointer( 'open' ); // open
});
};
// if there is a next pointer set button label to "Next", to "Close" otherwise
MAP.setNext = function( $widget, data ) {
if ( typeof $widget === 'object' ) {
var $buttons = $widget.find('.wp-pointer-buttons').eq(0);
var $close = $buttons.find('a.close').eq(0);
$button = $close.clone(true, true).removeClass('close');
$buttons.find('a.close').remove();
$button.addClass('button').addClass('button-primary');
has_next = false;
if ( MAP.hasNext( data ) ) {
has_next_data = MAP.getPointerData(MAP.js_pointers[data.next].data);
has_next = has_next_data.target && has_next_data.data;
}
var label = has_next ? MAP.next_label : MAP.close_label;
$button.html(label).appendTo($buttons);
}
};
$(MAP.pointers).each(function(index, pointer) { // loop pointers data
if( ! $().pointer ) return; // do nothing if pointer plugin isn't available
MAP.js_pointers[pointer.id] = { data: pointer };
var $target = $(pointer.anchor_id);
if ( $target.length && $target.is(':visible') ) { // anchor exists and is visible?
MAP.visible_pointers.push(pointer.id);
if ( ! MAP.first_pointer ) {
MAP.first_pointer = pointer;
}
}
if ( index === ( MAP.pointers.length - 1 ) && MAP.first_pointer ) {
$(document).trigger( 'MyAdminPointers.setup_done', MAP.first_pointer );
}
});
} )(jQuery, MyAdminPointers); // MyAdminPointers is passed by `wp_localize_script`
在評論的幫助下,代碼應該很清楚,至少我希望如此。
好的,我們完成了我們的 PHP 更簡單和更好的組織,我們的 JavaScript 更易讀,指針更容易編輯,更重要的是,一切正常。
次佳解決方案
嗯.. 是的。 WordPress 指針。你知道,當使用指針時,有很多不同的感覺;)
您的代碼位於正確的軌道上。但有幾個問題。
@ G.M 。對於 pointer('open')命令是正確的打開所有你的指針一次。此外,您沒有提供通過指針推進的方法。
我打了同樣的問題,想出了我自己的做法。我在 url 中使用一個查詢變量,將頁面重新加載到我要顯示下一個指針的管理頁面,讓 jQuery 處理其餘的。
WP 指針類
我決定把這個寫成一個班。但是我將首先展示它,以幫助您更好地瞭解發生了什麼。
開始上課
// Create as a class
class testWPpointers {
// Define pointer version
const DISPLAY_VERSION = 'v1.0';
// Initiate construct
function __construct () {
add_action('admin_enqueue_scripts', array($this, 'admin_enqueue_scripts')); // Hook to admin_enqueue_scripts
}
function admin_enqueue_scripts () {
// Check to see if user has already dismissed the pointer tour
$dismissed = explode (',', get_user_meta (wp_get_current_user ()->ID, 'dismissed_wp_pointers', true));
$do_tour = !in_array ('test_wp_pointer', $dismissed);
// If not, we are good to continue
if ($do_tour) {
// Enqueue necessary WP scripts and styles
wp_enqueue_style ('wp-pointer');
wp_enqueue_script ('wp-pointer');
// Finish hooking to WP admin areas
add_action('admin_print_footer_scripts', array($this, 'admin_print_footer_scripts')); // Hook to admin footer scripts
add_action('admin_head', array($this, 'admin_head')); // Hook to admin head
}
}
// Used to add spacing between the two buttons in the pointer overlay window.
function admin_head () {
?>
<style type="text/css" media="screen">
#pointer-primary {
margin: 0 5px 0 0;
}
</style>
<?php
}
-
我們已經定義了這個類。
-
我們構建了這個類,並向
admin_enqueue_scripts添加了一個動作。 -
我們確定我們的指針是否已被解僱。
-
如果沒有,我們繼續排隊必要的腳本。
您不需要更改這些第一個功能中的任何內容。
設置指針項的數組
下一步是定義每個指針。有五個項目我們需要定義 (excpept 為最後一個指針) 。我們將使用數組來做到這一點。我們來看看這個功能:
// Define footer scripts
function admin_print_footer_scripts () {
// Define global variables
global $pagenow;
global $current_user;
//*****************************************************************************************************
// This is our array of individual pointers.
// -- The array key should be unique. It is what will be used to 'advance' to the next pointer.
// -- The 'id' should correspond to an html element id on the page.
// -- The 'content' will be displayed inside the pointer overlay window.
// -- The 'button2' is the text to show for the 'action' button in the pointer overlay window.
// -- The 'function' is the method used to reload the window (or relocate to a new window).
// This also creates a query variable to add to the end of the url.
// The query variable is used to determine which pointer to display.
//*****************************************************************************************************
$tour = array (
'quick_press' => array (
'id' => '#dashboard_quick_press',
'content' => '<h3>' . __('Congratulations!', 'test_lang') . '</h3>'
. '<p><strong>' . __('WP Pointers is working properly.', 'test_lang') . '</strong></p>'
. '<p>' . __('This pointer is attached to the "Quick Draft" admin widget.', 'test_lang') . '</p>'
. '<p>' . __('Our next pointer will take us to the "Settings" admin menu.', 'test_lang') . '</p>',
'button2' => __('Next', 'test_lang'),
'function' => 'window.location="' . $this->get_admin_url('options-general.php', 'site_title') . '"' // We are relocating to "Settings" page with the 'site_title' query var
),
'site_title' => array (
'id' => '#blogname',
'content' => '<h3>' . __('Moving along to Site Title.', 'test_lang') . '</h3>'
. '<p><strong>' . __('Another WP Pointer.', 'test_lang') . '</strong></p>'
. '<p>' . __('This pointer is attached to the "Blog Title" input field.', 'test_lang') . '</p>',
'button2' => __('Next', 'test_lang'),
'function' => 'window.location="' . $this->get_admin_url('index.php', 'quick_press_last') . '"' // We are relocating back to "Dashboard" with 'quick_press_last' query var
),
'quick_press_last' => array (
'id' => '#dashboard_quick_press',
'content' => '<h3>' . __('This concludes our WP Pointers tour.', 'test_lang') . '</h3>'
. '<p><strong>' . __('Last WP Pointer.', 'test_lang') . '</strong></p>'
. '<p>' . __('When closing the pointer tour; it will be saved in the users custom meta. The tour will NOT be shown to that user again.', 'test_lang') . '</p>'
)
);
// Determine which tab is set in the query variable
$tab = isset($_GET['tab']) ? $_GET['tab'] : '';
// Define other variables
$function = '';
$button2 = '';
$options = array ();
$show_pointer = false;
// *******************************************************************************************************
// This will be the first pointer shown to the user.
// If no query variable is set in the url.. then the 'tab' cannot be determined... and we start with this pointer.
// *******************************************************************************************************
if (!array_key_exists($tab, $tour)) {
$show_pointer = true;
$file_error = true;
$id = '#dashboard_right_now'; // Define ID used on page html element where we want to display pointer
$content = '<h3>' . sprintf (__('Test WP Pointers %s', 'test_lang'), self::DISPLAY_VERSION) . '</h3>';
$content .= __('<p>Welcome to Test WP Pointers admin tour!</p>', 'test_lang');
$content .= __('<p>This pointer is attached to the "At a Glance" dashboard widget.</p>', 'test_lang');
$content .= '<p>' . __('Click the <em>Begin Tour</em> button to get started.', 'test_lang' ) . '</p>';
$options = array (
'content' => $content,
'position' => array ('edge' => 'top', 'align' => 'left')
);
$button2 = __('Begin Tour', 'test_lang' );
$function = 'document.location="' . $this->get_admin_url('index.php', 'quick_press') . '";';
}
// Else if the 'tab' is set in the query variable.. then we can determine which pointer to display
else {
if ($tab != '' && in_array ($tab, array_keys ($tour))) {
$show_pointer = true;
if (isset ($tour[$tab]['id'])) {
$id = $tour[$tab]['id'];
}
$options = array (
'content' => $tour[$tab]['content'],
'position' => array ('edge' => 'top', 'align' => 'left')
);
$button2 = false;
$function = '';
if (isset ($tour[$tab]['button2'])) {
$button2 = $tour[$tab]['button2'];
}
if (isset ($tour[$tab]['function'])) {
$function = $tour[$tab]['function'];
}
}
}
// If we are showing a pointer... let's load the jQuery.
if ($show_pointer) {
$this->make_pointer_script ($id, $options, __('Close', 'test_lang'), $button2, $function);
}
}
好的,讓我們來看看這裏的幾件事情。
首先,我們的 $tour 陣列。這是保存所有指針 EXCEPT 顯示給用户的第一個指針的數組 (稍後再説) 。所以,你想要從你打算顯示的第二個指針開始,並繼續到最後一個指針。
接下來,我們有一些非常重要的項目。
-
$tour陣列鍵必須是唯一的 (quick_press,site_title,quick_press_last; 如上所述) 。 -
‘id’ 命令必須匹配要附加到指針的項目的 html 元素 id 。
-
function命令將重新加載/重定位窗口。這是用來顯示下一個指針的。我們必須重新加載窗口,或者將其重定位到下一個管理頁面,其中將顯示一個指針。 -
我們運行具有兩個變量的
get_admin_url()函數; 第一個是我們要下一個的管理頁面; 而第二個是我們希望顯示的指針的唯一數組鍵。
進一步下來,您將看到開始 if (!array_key_exists($tab, $tour)) { 的代碼。這是我們確定是否已經設置了一個 url 查詢變量的地方。如果沒有,那麼我們需要定義要顯示的第一個指針。
該指針使用與上述 $tour 數組中使用的完全相同的 id, content, button2, and function 項目。請記住,get_admin_url()函數的第二個參數必須與 $tour 變量中的數組鍵完全相同。這是告訴腳本去下一個指針。
如果在 url 中已經設置了查詢變量,則使用其餘的函數。不需要再調整任何功能。
獲取管理員 URL 下一個函數實際上是一個幫助函數… 用於獲取管理 URL 並提前指針。
// This function is used to reload the admin page.
// -- $page = the admin page we are passing (index.php or options-general.php)
// -- $tab = the NEXT pointer array key we want to display
function get_admin_url($page, $tab) {
$url = admin_url();
$url .= $page.'?tab='.$tab;
return $url;
}
記住,有兩個論點; 我們要去的管理頁面.. 和標籤。該選項卡將是我們要進入下一個的 $tour 數組鍵。這些必須匹配
所以,當我們調用函數 get_admin_url()並傳遞兩個變量; 第一個變量確定下一個管理頁面,第二個變量決定要顯示的指針。
最後… 我們可以最終打印管理腳本到頁腳。
// Print footer scripts
function make_pointer_script ($id, $options, $button1, $button2=false, $function='') {
?>
<script type="text/javascript">
(function ($) {
// Define pointer options
var wp_pointers_tour_opts = <?php echo json_encode ($options); ?>, setup;
wp_pointers_tour_opts = $.extend (wp_pointers_tour_opts, {
// Add 'Close' button
buttons: function (event, t) {
button = jQuery ('<a id="pointer-close" class="button-secondary">' + '<?php echo $button1; ?>' + '</a>');
button.bind ('click.pointer', function () {
t.element.pointer ('close');
});
return button;
},
close: function () {
// Post to admin ajax to disable pointers when user clicks "Close"
$.post (ajaxurl, {
pointer: 'test_wp_pointer',
action: 'dismiss-wp-pointer'
});
}
});
// This is used for our "button2" value above (advances the pointers)
setup = function () {
$('<?php echo $id; ?>').pointer(wp_pointers_tour_opts).pointer('open');
<?php if ($button2) { ?>
jQuery ('#pointer-close').after ('<a id="pointer-primary" class="button-primary">' + '<?php echo $button2; ?>' + '</a>');
jQuery ('#pointer-primary').click (function () {
<?php echo $function; ?> // Execute button2 function
});
jQuery ('#pointer-close').click (function () {
// Post to admin ajax to disable pointers when user clicks "Close"
$.post (ajaxurl, {
pointer: 'test_wp_pointer',
action: 'dismiss-wp-pointer'
});
})
<?php } ?>
};
if (wp_pointers_tour_opts.position && wp_pointers_tour_opts.position.defer_loading) {
$(window).bind('load.wp-pointers', setup);
}
else {
setup ();
}
}) (jQuery);
</script>
<?php
}
}
$testWPpointers = new testWPpointers();
再次,沒有必要改變任何以上。該腳本將定義並輸出指針覆蓋窗口中的兩個按鈕。一個將永遠是”Close” 按鈕; 並將更新當前用户元 dismissed_pointers 選項。
第二個按鈕 (動作按鈕) 將執行該功能 (我們的窗口重定位方法) 。
我們關上課。
這是它的全部代碼。 WP Pointer Class
您可以將其複製/粘貼到您的開發網站,並訪問”Dashboard” 頁面。這將引導您參觀。
記住,這是一個有點混亂,第一個指針最後定義在代碼中。這就是它應該工作的方式。數組將保存您希望使用的所有其餘指針。
記住,’id’ 數組項必須與上一個數組項’function’ 命令匹配 get_admin_url()函數的第二個參數。這是怎麼指針’talk’ 彼此知道如何推進。
請享用!! 🙂
參考文獻
注:本文內容整合自 Google/Baidu/Bing 輔助翻譯的英文資料結果。如果您對結果不滿意,可以加入我們改善翻譯效果:薇曉朵技術論壇。
