要获得永久链接,您需要使用get_permalink()
. 只需传递帖子的ID或将其留空,即可在循环中获取当前页面。
wp_localize_script ()
将通过您定义的全局对象在页面上呈现JS可以使用的PHP变量。
PHP
// Register the script
wp_register_script( \'some_handle\', \'path/to/myscript.js\' );
// Localize the script with new data
$translation_array = array(
\'some_string\' => __( \'Some string to translate\', \'plugin-domain\' ),
\'a_value\' => \'10\'
);
wp_localize_script( \'some_handle\', \'object_name\', $translation_array );
// Enqueued script with localized data.
wp_enqueue_script( \'some_handle\' );
JS
<script>
// alerts \'Some string to translate\'
alert( object_name.some_string);
</script>
REST-API也始终可用于扩展您认为合适的方式:
http://v2.wp-api.org/extending/adding/