Back to Browse

Wordpress Hooks Tutorial for beginners from scratch #11 Action hook "wp_head" & 'wp_footer'

3.5K views
Nov 5, 2018
7:36

In this video session we have discussed about Action Hook: 'wp_head' & 'wp_footer' #WordpressTutorialsPoint #WordpressLearnersHub #WordpressCustomizations #LearnWordpressStepbyStep #WordpressBySanjay wp_head action hook is used to add custom meta links, javascript code, custom css code within head element. wp_footer action hook is used to add custom meta links, javascript code, custom css code below footer element. Syntax: add_action('wp_head','callback_function') add_action('wp_footer','callback_function') Example: function owt_head_file_css() { echo '[link rel="stylesheet" href="' . plugin_dir_url(__FILE__) . 'assets/css/header_owt.css"/]'; } add_action("wp_head", "owt_head_file_css"); function owt_footer_file_js() { echo '[script src="' . plugin_dir_url(__FILE__) . 'assets/js/footer_owt.js"][/script]'; } add_action("wp_footer", "owt_footer_file_js"); SOCIAL : =============== Subscribe : https://www.youtube.com/channel/UCB2flCo-gW6RhpVVXySqcMg FACEBOOK : https://www.facebook.com/onlinewebtutorhub/ TWITTER: https://twitter.com/owthub BLOG: https://onlinewebtutorhub.blogspot.in/ Other Tutorials =============== Wordpress Customizations: --------------------------------- Wordpress Theme (Hindi): https://goo.gl/MZ8maF Wordpress Widget (Hindi): https://goo.gl/Dc2htn Wordpress Plugin (English): https://goo.gl/BA7dYG Wordpress Theme Options (English): https://goo.gl/Vjv3Ub Wordpress JSON Rest API (English): https://goo.gl/SVQRQR Wordpress JSON Rest API (Hindi): https://goo.gl/NNWfKa and many more... Javascript framework: ---------------------------------- Learn backbone.js here! (English) : https://goo.gl/Qd2Pcs Learn Vue JS here ! (Hindi): https://goo.gl/MVtsmh PHP Frameworks: ---------------------------------- Laravel tutorial (Hindi): https://goo.gl/Nh9qJk CakePHP tutorial (Hindi): https://goo.gl/uRsS3G Tags =================== wordpress hooks, wordpress hooks tutorials for beginners, beginner wordpress hooks tutorial, learn wordpress hooks, complete wordpress hooks tutorials for beginners, wordpress hooks from scratch, learn wordpress hooks from scratch, wordpress hooks tutorial, learn wordpress hooks step by step, wordpress hooks tutorials for beginners, wordpress hooks online web tutor, wordpress hooks tutorials step by step, online web tutor, profotech solutions, Thanks Online Web Tutor Keep learning and Sharing :)

Download

0 formats

No download links available.

Wordpress Hooks Tutorial for beginners from scratch #11 Action hook "wp_head" & 'wp_footer' | NatokHD