Skip to content

Instantly share code, notes, and snippets.

@generatepress
Last active August 27, 2017 00:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save generatepress/cdb67600504b71169c285c9d1788d5d7 to your computer and use it in GitHub Desktop.
Save generatepress/cdb67600504b71169c285c9d1788d5d7 to your computer and use it in GitHub Desktop.
Show Gridable Add Row button in Sections
add_action( 'admin_head', 'tu_show_gridable_button_sections' );
function tu_show_gridable_button_sections() {
?>
<style>
#wp-generate-sections-editor-wrap .wp-media-buttons > .gridable-insert-row-button {
display: inline-block;
}
</style>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment