Advertisement
isaacadams

text shortcode

Mar 21st, 2024 (edited)
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. // Function to add text shortcode to posts and pages
  2. function text_shortcode(){
  3. $html = '<div class="get_help" id="get_help">
  4. <h2>Get Help Now!</h2>
  5. <p>Our addiction specialists are standing by around the clock.</p>
  6. <a href="tel:#" class="wpcf7-form-control wpcf7-submit button-large" id="telephone"><i class="fa fa-phone-alt"></i> #</a>
  7. </div>';
  8. return $html;
  9. }
  10.  
  11. add_shortcode('get-help', 'text_shortcode');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement