Title: Shortcode for Copyright Note Box?
Last modified: February 22, 2020

---

# Shortcode for Copyright Note Box?

 *  Resolved [khoavo](https://wordpress.org/support/users/khoavo/)
 * (@khoavo)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/shortcode-for-copyright-note-box/)
 * Hi there,
 * The Copyright Note box can’t accept shortcodes? [https://prnt.sc/r60uwl](https://prnt.sc/r60uwl)
 * I inserted [now_date] to display the latest year with a function in Child theme,
   but it doesn’t work in your Copyright Note box in footer of the login screen.
   I works on my theme footer though.
 * Let me know. Thanks!

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

 *  Plugin Contributor [Abdul Wahab](https://wordpress.org/support/users/abdulwahab610/)
 * (@abdulwahab610)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/shortcode-for-copyright-note-box/#post-12471549)
 * Hello, [@khoavo](https://wordpress.org/support/users/khoavo/)
 * Shortcode isn’t supported at Copyright Note Box right now.
    We’re going to create
   a filter at that point. After that, you can change the copyright note with that.
 * Thank you.
 *  Thread Starter [khoavo](https://wordpress.org/support/users/khoavo/)
 * (@khoavo)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/shortcode-for-copyright-note-box/#post-12471554)
 * Alright Thanks. I’ll wait for the next plugin update. Then I’ll reinsert my [
   year] shortcode.
 *  Plugin Contributor [Abdul Wahab](https://wordpress.org/support/users/abdulwahab610/)
 * (@abdulwahab610)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/shortcode-for-copyright-note-box/#post-12486768)
 * Hello, [@khoavo](https://wordpress.org/support/users/khoavo/)
 * The plugin release sent v(1.4.3).
    We’ve created a filter naming `loginpress_footer_copyright`
   through this you can extend the functionality of footer. [Helping Documentation](https://loginpress.pro/documentation/#hideloginwpadminredirect).
 * Thank you.
 *  Thread Starter [khoavo](https://wordpress.org/support/users/khoavo/)
 * (@khoavo)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/shortcode-for-copyright-note-box/#post-12488424)
 * Hey Thanks, it works BUT I have to click inside the Copyright Note box, then 
   tap the space bar once so the cursor moves one notch to the right, then it displays
   fine: [https://prnt.sc/r8o3ua](https://prnt.sc/r8o3ua)
 * If I don’t tap the space bar once and leave the Copyright Note box completely
   blank, then it displays a duplicate line of text, not sure where it’s coming 
   from: [https://prnt.sc/r8nvxf](https://prnt.sc/r8nvxf)
 * **I added your filter to my function.php (Child Theme):**
    // LoginPress Plugin–
   Allows shortcode for the year display inthe footer copyight section add_filter(‘
   loginpress_footer_copyright’, ‘loginpress_footer_copyright_callback’ ); function
   loginpress_footer_copyright_callback( $content ) { return $content . do_shortcode(‘**
   ©** [year] Hoofbeatz Audio. All rights reserved.‘ ); }
    -  This reply was modified 6 years, 3 months ago by [khoavo](https://wordpress.org/support/users/khoavo/).
 *  Plugin Contributor [Abdul Wahab](https://wordpress.org/support/users/abdulwahab610/)
 * (@abdulwahab610)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/shortcode-for-copyright-note-box/#post-12493121)
 * Hey, [@khoavo](https://wordpress.org/support/users/khoavo/)
 * Remove the variable `$content` when you return it. Your callback function will
   be.
 *     ```
       add_filter( 'loginpress_footer_copyright', 'loginpress_footer_copyright_callback' );
       function loginpress_footer_copyright_callback( $content ) {
           return '© ' . do_shortcode( '[year]' ) . 'Hoofbeatz Audio. All rights reserved.';
       }
       ```
   
 * Don’t need to return the default value of content in your case.
 * Thank you.
 *  Thread Starter [khoavo](https://wordpress.org/support/users/khoavo/)
 * (@khoavo)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/shortcode-for-copyright-note-box/#post-12493142)
 * Perrrrrfect! Thank you so much.
 *  Plugin Contributor [Abdul Wahab](https://wordpress.org/support/users/abdulwahab610/)
 * (@abdulwahab610)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/shortcode-for-copyright-note-box/#post-12493448)
 * Awesome!
 * You are welcome.

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

The topic ‘Shortcode for Copyright Note Box?’ is closed to new replies.

 * ![](https://ps.w.org/loginpress/assets/icon-256x256.png?rev=3005027)
 * [LoginPress | wp-login Custom Login Page Customizer](https://wordpress.org/plugins/loginpress/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/loginpress/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/loginpress/)
 * [Active Topics](https://wordpress.org/support/plugin/loginpress/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/loginpress/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/loginpress/reviews/)

 * 7 replies
 * 2 participants
 * Last reply from: [Abdul Wahab](https://wordpress.org/support/users/abdulwahab610/)
 * Last activity: [6 years, 3 months ago](https://wordpress.org/support/topic/shortcode-for-copyright-note-box/#post-12493448)
 * Status: resolved