Title: Function.php
Last modified: August 22, 2016

---

# Function.php

 *  [goodchoice](https://wordpress.org/support/users/goodchoice/)
 * (@goodchoice)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/functionphp-13/)
 * Hi,
    recently I have a plugin that require under function.php to add a code..
   could you kindly guide me or let me know where to do that..
 * here is what I should do..
 * Changing Login Redirects
 * When clicking ‘login’ links in both Job and Resume Manager, they will default
   to the WordPress login page (because that is the only login page these plugins
   know about!). If you want to send the user to a custom login page instead, you
   can use a small snippet in your theme functions.php file.
 * For Job Manager:
 * 123456 /** Code goes in theme functions.php **/
 * add_filter( ‘submit_job_form_login_url’, ‘custom_submit_job_form_login_url’ );
 * function custom_submit_job_form_login_url() {
 *  return ‘[http://someurl.com&#8217](http://someurl.com&#8217);;
 * Kindly help..
 * Million Thanks..

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [Rocco Aliberti](https://wordpress.org/support/users/d4z_c0nf/)
 * (@d4z_c0nf)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/functionphp-13/#post-5754869)
 * In your child theme functions.php you have to add the suggested code:
 *     ```
       add_filter( 'submit_job_form_login_url', 'custom_submit_job_form_login_url' );
   
       function custom_submit_job_form_login_url() {
       return 'http://someurl.com';
       }
       ```
   
 * p.s.
    you missed a closing bracket.
 *  Thread Starter [goodchoice](https://wordpress.org/support/users/goodchoice/)
 * (@goodchoice)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/functionphp-13/#post-5754884)
 * Thank you… but I still have same problem .. when a different user try to log 
   in ..direct the page to wp log in page.. is there any plug in for log in or log
   out that you would suggest ?

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Function.php’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/customizr/4.4.24/screenshot.png)
 * Customizr
 * [Support Threads](https://wordpress.org/support/theme/customizr/)
 * [Active Topics](https://wordpress.org/support/theme/customizr/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/customizr/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/customizr/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [goodchoice](https://wordpress.org/support/users/goodchoice/)
 * Last activity: [11 years, 5 months ago](https://wordpress.org/support/topic/functionphp-13/#post-5754884)
 * Status: not resolved