你需要做的是register 和/或enqueue 您的脚本,然后使用wp_localize_script
在页面上包含Javascript变量。这个Codex page has this example:
wp_enqueue_script( \'some_handle\' );
$translation_array = array(
\'some_string\' =>
__( \'Some string to translate\' ),
\'a_value\' => \'10\'
);
wp_localize_script( \'some_handle\', \'object_name\', $translation_array );
然后,您可以使用访问变量,以引用相同的Codex页面:
<script>
alert(object_name.some_string); // alerts \'Some string to translate\'
</script>