Back to Browse

Wordpress Hooks Tutorial for beginners from scratch #18 Logout url & Lost password url filter hooks

1.3K views
Nov 13, 2018
10:01

In this video session we have discussed about #WordpressTutorialsPoint #WordpressLearnersHub #WordpressCustomizations #LearnWordpressStepbyStep #WordpressBySanjay Filter Hook: 'logout_url', 'lostpassword_url' logout_url filter hook is used to manipulate the url of logout. lostpassword_url filter hook is used to manipulate the lost password url in wordpress Syntax: add_filter('logout_url','callback_function') add_filter('lostpassword_url','callback_function') Example: add_filter("logout_url", "owt_update_logout_url", 10, 2); function owt_update_logout_url($logout_url, $redirect) { return home_url("/custom-logout-page/?redirect_to=" . $redirect); } add_filter("lostpassword_url", "owt_update_lost_url", 10, 2); function owt_update_lost_url($lostpassword_url, $redirect) { return home_url("/custom-lostpassword_url/?redirect_to=" . $redirect); } function owt_get_links() { echo '[a href="' . wp_logout_url(get_permalink()) . '"]Logout URL[/a]'; echo "[br/]"; echo '[a href="' . wp_lostpassword_url() . '"]Lost Password URL[/a]'; } add_action("init", "owt_get_links"); 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 #18 Logout url & Lost password url filter hooks | NatokHD