Advertisement
Guest User

ch snippet

a guest
Aug 26th, 2015
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. <?php
  2. /*
  3. Plugin Name: EE Snippet Code
  4. Description: Site specific code for cleanhealth.com.au
  5. */
  6. /* Begin Adding Functions Below This Line; Do not include an opening PHP tag as this sample code already includes one! */
  7. function add_some_text($post) {
  8.  
  9. echo '<div>Please read our refund policy <a href="http://cleanhealth.com.au/refund-policy/">here</a>
  10. </br>
  11. <hr>
  12. For further assistance on our education courses please contact our administration team on <a href="tel:0280949804" target="_blank">+61 2 8094 9804</a> or email at: <a href="mailto:admin@chfi.com.au" target="_blank">admin@chfi.com.au</a>
  13. <img class="alignleft size-full wp-image-9876" src="http://cleanhealth.com.au/wp-content/uploads/2015/08/securePayment-logos.jpg" alt="securePayment-logos" width="320" height="110" data-id="9876" /></div>';
  14.  
  15. }
  16. add_action('AHEE_event_details_after_post', 'add_some_text');
  17. /* Stop Adding Functions */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement