20/10/06 20:16:58.88 foWbIn5B0.net
URLリンク(indigoblog.org)
URLリンク(www.expexp.jp)
2つのさいとを参考に
URLリンク(coliss.com)のtwenty twentyを実装したかったのですが。
function my_php_Include($params = array()) {
extract(shortcode_atts(array('file' => 'default'), $params));
ob_start();
include(STYLESHEETPATH . "/$file.php");
return ob_get_clean();
}
add_shortcode('myphp', 'my_php_Include');
function add_styles() {
wp_enqueue_style( 'twentytwenty', get_template_directory_uri() . 'css/twentytwenty.css', array(), false, 'all');
}
add_action('wp_print_scripts', 'add_styles');
function add_scripts() {
wp_enqueue_script( 'jquery', get_template_directory_uri() . '/js/jquery.js', array(), false, true );
wp_enqueue_script( 'jquery.event.move', get_template_directory_uri() . '/js/jquery.event.move.js', array(), false, true );
wp_enqueue_script( 'jquery.twentytwenty', get_template_directory_uri() . '/js/jquery.twentytwenty.js', array(), false, true );
}
と書きましたが機能しませんなぜでしょうか?