Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robertdevore/834eedbdb0ba59a6000959347df8bd30 to your computer and use it in GitHub Desktop.
Save robertdevore/834eedbdb0ba59a6000959347df8bd30 to your computer and use it in GitHub Desktop.
Add a "view details" button to the bottom of the WP Dispensary shortcode output
<?php
/**
* WP Dispensary - view details button
*/
add_action( 'wpd_shortcode_inside_bottom', 'acme_viewdetails' );
function acme_viewdetails() { ?>
<p><a href="<?php the_permalink(); ?>" class="acme-button">View Details</a></p>
<?php } // function acme_viewdetails
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment