gpt4 book ai didi

jquery - 将 jQuery 插件转换为 WordPress 插件

转载 作者:行者123 更新时间:2023-12-01 02:43:03 25 4
gpt4 key购买 nike

对于我的 WordPress 网站,我确实需要能够拥有 this library offers 的功能.

我的问题是是否可以将该 jQuery 插件转换为可用的 WordPress 插件?如果是这样,怎么办?

这是制作 init.php 文件的正确方法吗?

<?php
/*
Plugin Name: jQuery Windows
Plugin URI: http://fstoke.me/jquery/window
Description: Sexy jQuery Windows.
Version: 5.03
Author: PC - Prashant Chaudhary
Author URI: http://fstoke.me/jquery/window
License: Creative Commons Attribution-ShareAlike
*/
wp_enqueue_style(
'jquerywindowstyles',
WP_PLUGIN_URL.'/jQuery-windows/css/jquery.window.css',
false,
all);

// Add the scripts to the footer
function jquerywindowjs(){
// Identify our javascript files
wp_register_script(
'jquery.window',
WP_PLUGIN_URL.'/jquery-windows/jquery.window.js',
array( 'jquery' ),
"2.1.4",
1 );
wp_register_script(
'jquery.window.min',
WP_PLUGIN_URL.'/jquery-windows/jquery.window.min.js',
array( 'jquery', 'jquery.window' ),
"1.0",
1 );
// Then enqueue them
wp_enqueue_script( 'jquery.window' );
}
// Action our scripts
add_action( 'wp_enqueue_scripts', 'jquerywindowjs' );
?>

最佳答案

直接的答案是肯定的,这是可能的。而且很容易。如何做到这一点是一个不同的问题,而且更加详细。但是,如果您需要在一个站点中一次性使用它 - 您始终可以选择仅使用 wp_enqueue_script() 包含该脚本。 ,以及带有 wp_enqueue_style() 的样式在您的 functions.php 中,然后按原样使用..

但是,您已经有很多具有类似功能的 WordPress 插件..

参见: http://wordpress.org/plugins/search.php?q=modal

http://wordpress.org/plugins/search.php?q=popup

不排除您可以找到相同的脚本作为插件,因为实际上有数百个脚本..

关于jquery - 将 jQuery 插件转换为 WordPress 插件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20297035/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com