加载脚本插件wordpress外部页面

时间:2017-01-16 16:56:18

标签: javascript php jquery wordpress external

从外部页面.php,我想用这段代码阅读帖子内容

<?php
define('WP_USE_THEMES', false);
require('news/wp-load.php');    
$page_id = $_GET['id'];  //Page ID
$page_data = get_page($page_id); ?>
<h1><?php echo $title = $page_data->post_title;  ?></h1>
<?php
$content = $page_data->post_content;
echo $date = $page_data->post_date;     
echo apply_filters( 'the_content', $content ); 
?>

如何添加我安装的插件脚本(javascript,css)? 我尝试使用<?php get_header();?>,但它不包括它们。

我该怎么做?

1 个答案:

答案 0 :(得分:0)

wp_enqueue_script('test', plugin_dir_url(__FILE__) . 'test.js', array('jquery'));

第三个参数是依赖项,如果它是一个使用的脚本,例如jQuery,呃没有依赖项,只需删除第三个参数

for CSS:

wp_enqueue_style( 'style', get_stylesheet_uri() );

文档:

https://developer.wordpress.org/themes/basics/including-css-javascript/