-
-
Save raphaelnikson/e6de5a8d43c3233c11a8f876127a90e8 to your computer and use it in GitHub Desktop.
Adicionar texto ao metabox
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| add_action('admin_footer', 'funcao_texto' ); | |
| function funcao_texto(){ | |
| ?> | |
| <script> | |
| jQuery(document).ready(function(){ | |
| jQuery(document).find('#postbox-container-1 .inside').append('Texto aqui'); | |
| }); | |
| </script> | |
| <?php | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment