I’m customizing a theme for a client and I want to leverage post formats.
On the quote post format I would like
the_content();
to be wrapped in a two spans that contains quotation marks that I could style and position. Is this possible?
Thanks.
I’m customizing a theme for a client and I want to leverage post formats.
On the quote post format I would like
the_content();
to be wrapped in a two spans that contains quotation marks that I could style and position. Is this possible?
Thanks.
You must be logged in to post a comment.
Try
CSS Solution:
Similar to @sisir but a slightly different take on a few of the specifics. For functions.php:
If you’re using
post_class()
and don’t need perfect browser support, you can use CSS something like this (.entry-content being some wrapping element around your body content):