Displaying Custom Field
-
I want to create a block of text that will be displayed on a series of pages. I’m following the instructions @ https://codex.wordpress.org/Custom_Fields
I just created a new custom field…
Name: County Intro
Value: Hi, if you live in this county, what are some socio-political issues you care about?
Now I’m trying to figure out how to make the value display live.
From the instructions: “With a Custom Field added to the post, it’s time to display your books and mood to the world. To display the Custom Fields for each post, use the the_meta() template tag. The tag must be put within The Loop in order to work. Many people add the_meta() template tag to the end of their post or in their Post Meta Data Section.”
When I paste <?php the_meta(); ?> into the body of my post (in text mode), I see nothing when I display the page.
As I understand it, an alternate method is to paste the code “within The Loop.” So where do I find “the loop”? I have a child theme, so I assume I need to copy some file from the theme folder into the child theme folder.
Also, I don’t want to display this custom field on every post; just on posts focusing on counties and communities. (They’ll probably all be in the category Washington and will be tagged with “county.”
Thank you.
The topic ‘Displaying Custom Field’ is closed to new replies.