[WORDPRESS] 워드 프레스 기능 파일 (PHP에) 포함하여 JS에 대한 모범 사례
WORDPRESS워드 프레스 기능 파일 (PHP에) 포함하여 JS에 대한 모범 사례
해결법
-
1.나는 쉬운 리트 윗 워드 프레스 플러그인이 할 수있는 작은 트릭을 할.
나는 쉬운 리트 윗 워드 프레스 플러그인이 할 수있는 작은 트릭을 할.
// Enqueue the script add_action('template_redirect', 'add_script'); function add_script() { wp_enqueue_script('retweet', get_option('home') . '/?retweetjs'); } add_action('init', 'deliver_js'); function deliver_js() { if ( array_key_exists('retweetjs', $_GET) ) { header('Content-Type: text/javascript'); print_retweet_js($options); // die after printing js die(); } } function print_retweet_js($options) { include_once('path/to/your/js/script.php'); }
이 당신에게 유용합니다 희망
-
2.
function theme_script() { ?> < script type="text / javascript" > here is your script < /script > <?php wp_enqueue_script( 'theme_script_id', get_bloginfo('template_directory').'/js/theme_script.js', array( 'jquery' ) ); } add_action( 'wp_print_scripts', 'theme_script' );
from https://stackoverflow.com/questions/12739197/best-practice-for-including-js-with-php-in-wordpress-functions-file by cc-by-sa and MIT license
'WORDPRESS' 카테고리의 다른 글
[WORDPRESS] 연락처 양식 보안 (0) | 2020.11.19 |
---|---|
[WORDPRESS] 어떻게 C #을 사용 워드 프레스에 게시에? [닫은] (0) | 2020.11.19 |
[WORDPRESS] 레일 워드 프레스와 루비 (0) | 2020.11.18 |
[WORDPRESS] WordPress : 할당 된 택시없이 쿼리 게시물 (0) | 2020.11.18 |
[WORDPRESS] 어떻게 WooCommerce 동일 SKU 여러 단순 제품을 만드는 방법? (0) | 2020.11.18 |