我已经看了一下你提到的主题的内部。下面的代码(在zerif\\u customizer.js文件中)似乎就是创建这个按钮的原因。
jQuery(\'.preview-notice\').append(\'<a class="zerif-upgrade-to-pro-button" href="http://themeisle.com/themes/zerif-pro-one-page-wordpress-theme/" class="button" target="_blank">{pro}</a>\'.replace(\'{pro}\',zerifLiteCustomizerObject.pro));
这可以在主题js文件中找到。然后,他们将此文件连接到函数中的定制器上。使用此代码的php文件
function zerif_registers() {
wp_enqueue_script( \'zerif_customizer_script\', get_template_directory_uri() . \'/js/zerif_customizer.js\', array("jquery"), \'20120206\', true );
wp_localize_script( \'zerif_customizer_script\', \'zerifLiteCustomizerObject\', array(
\'documentation\' => __( \'View Documentation\', \'zerif-lite\' ),
\'pro\' => __(\'View PRO version\',\'zerif-lite\')
) );
}
add_action( \'customize_controls_enqueue_scripts\', \'zerif_registers\' );
希望这能让你有所收获。