0

我想将 jquery.corner.js 嵌入到我的 wordpress 主题中,但我没有运气......

将此脚本嵌入wordpress主题并使用它的正确方法是什么?

这是脚本的网址,以防万一: http: //www.malsup.com/jquery/corner/

谢谢!:)

4

1 回答 1

0

您应该使用wp_register_scriptwp_enqueue_script。将文件添加到您的主题文件夹。

function include_jquery_corner(){
  wp_register_script( 'jq_corner', get_template_directory_uri() . 'PATH TO YOUR JS FILE' );
  wp_enqueue_script( 'jq_corner' );
}

add_action( 'wp_enqueue_scripts', 'include_jquery_corner' );
于 2013-03-04T12:35:47.833 回答