Advertisement
arie_cristianD

add box after author box single post

Sep 23rd, 2024
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.61 KB | None | 0 0
  1. add_action( 'jnews_single_post_after_content', 'blow_author_box', 31 );
  2.  
  3. function blow_author_box() {
  4.     $content =
  5.     ' <div style="border: 2px solid #006400; background-color: #f0fff0; color: #228b22; padding: 10px; border-radius: 0; font-family: Arial, sans-serif;">
  6.     <p><strong>DigitalBarry</strong> is all about honest content—no ads, affiliate marketing, or clickbait. We focus on delivering quality journalism that respects your time and intelligence. If you’d like to support our efforts in keeping the site ad-free, we’d be grateful. Thank you for your trust and support!</p>
  7.     </div>';
  8.     echo $content;
  9. }
  10.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement