Açıklama
This plugin helps to add scripts into the header (before close tag </HEAD>) or the footer (before close tag </BODY>).
- Add header/footer scripts for all pages
- Add header/footer scripts for individual page
- Add header/footer scripts for Order Received page (Woocommerce)
- Allows filter to support custom post types
Although this plugin has been created to add these scripts only, there is no limit to add other things on the page such as META tags, STYLESHEET/CSS tags, HTML tags…
Yükleme
- Download and unzip the plugin into your WordPress plugins directory (usually /wp-content/plugins/).
- Activate the plugin through the ‘Plugins’ menu in your WordPress Admin.
- Edit pages to input the header/footer script. You can also input the script under Settings -> In Page Script.
- Support Woocommerce Order Received page.
SSS
- How to use this plugin for custom post types
-
You may want to use this filter from functions.php: ips_post_type
For ex:
add_action('init', 'init_ips_plugin'); function init_ips_plugin(){ add_filter('ips_post_type', 'filter_ips_post_type'); } function filter_ips_post_type($post_types){ // replace custom_post_type with yours return array('page', 'custom_post_type'); }
İncelemeler
Bu eklenti için herhangi bir değerlendirme bulunmuyor.
Katkıda Bulunanlar ve Geliştiriciler
“In Page Script” açık kaynaklı yazılımdır. Aşağıdaki kişiler bu eklentiye katkıda bulunmuşlardır.
Katkıda bulunanlar“In Page Script” eklentisini dilinize çevirin.
Geliştirmeyle ilgilenir misiniz?
Kodu görüntüleyin, SVN deposuna göz atın ya da RSS ile geliştirme günlüğüne abone olun.
Değişiklik Kaydı
0.1
- Add header/footer scripts for all pages
- Add header/footer scripts for individual page
- Add header/footer scripts for Order Received page (Woocommerce)
- Allows filter to support custom post types