Skip to content

Instantly share code, notes, and snippets.

@raphaelnikson
Created March 1, 2017 16:29
Show Gist options
  • Select an option

  • Save raphaelnikson/e6de5a8d43c3233c11a8f876127a90e8 to your computer and use it in GitHub Desktop.

Select an option

Save raphaelnikson/e6de5a8d43c3233c11a8f876127a90e8 to your computer and use it in GitHub Desktop.
Adicionar texto ao metabox
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