Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save junenacpil29/6dd5e161d2c5943982cb43f9bd6d4dd5 to your computer and use it in GitHub Desktop.
Save junenacpil29/6dd5e161d2c5943982cb43f9bd6d4dd5 to your computer and use it in GitHub Desktop.
<?php
// Before the table
add_action( 'wcvendors_settings_before_form', 'output_before_settings_form', 0 );
function output_before_settings_form(){
echo '<h1>Before the table</h1>';
}
// After the table
add_action( 'wcvendors_settings_after_form', 'output_after_settings_form', 99 );
function output_after_settings_form(){
echo '<h1>After the table</h1>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment