Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- wp_add_inline_script();
- wp_add_inline_script( string $handle, string $data, string $position );
- array(
- 'id' => 'header_scripts',
- 'title' => esc_html__('Header Scripts', 'seo'),
- 'type' => 'textarea',
- 'desc' => esc_html__('Scripts goes before closing < / head >', 'seo')
- ),
- array(
- 'id' => 'footer_scripts',
- 'title' => esc_html__('Footer Scripts', 'seo'),
- 'type' => 'textarea',
- 'desc' => esc_html__('Scripts goes before closing < / body >', 'seo')
- ),
- array(
- 'id' => 'seo_custom_css',
- 'title' => esc_html__('Custom CSS', 'seo'),
- 'type' => 'textarea',
- 'desc' => esc_html__('Add your custom css here', 'seo')
- )
- $header_scripts = cs_get_option('header_scripts');
- $footer_scripts = cs_get_option('footer_scripts');
- $seo_custom_css = cs_get_option('seo_custom_css')
- wp_add_inline_script( 'jquery-migrate', $header_scripts );
- wp_add_inline_script( 'seo-main', $footer_scripts');
- wp_add_inline_style( 'seo-style', $seo_custom_css );
Advertisement
Add Comment
Please, Sign In to add comment