Quantcast
Channel: Topic Tag: plugin | WordPress.org
Viewing all articles
Browse latest Browse all 26892

esmi on "adding a custom text box to a theme via plugin"

$
0
0

No - not quite. Try something like:

function my_the_content_filter($content) {
  if ( is_home() ) {
    $content = [insert markup etc];
  }
  return $content;
}
add_filter( 'the_content', 'my_the_content_filter' );

Viewing all articles
Browse latest Browse all 26892

Trending Articles