I know that I can do this via CSS or javaScript but I wonder if Wordpress has a native way of doing this.
I have this code:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php the_content(); ?>
But let's say, I just want to show a specific id or class contained in all those posts. Ex: #heading
or .heading
How can I do that?