I'm pretty new to WordPress and building a site that is using a custom template. The template includes a large banner at the top which is uploaded via the page's "featured image".
I would like to add the page title on the top of this image(which is not an issue) but be able to specify if the title is positioned left or right(maybe a dropdown menu selection) when creating the page.
I've seen many suggestions for similar functionality using the plugin Advanced Custom Fields, but I'm unable to find a solution that doesn't involve an additional plugin.
Is there a reason why I can't just add in the functionality I need? Adding a plugin just seems a little overkill to me for such a small feature.
UPDATE:
Ok, after some poking around I found that there's a "custom fields" option that was not checked in the "screen options". My understanding is that these fields work as key value pairs that can be accessed in the template using get_post_meta($post_id, $key, $single); or a more specific example get_post_meta($post->id, 'my_dropdown_key', true);. I will test it out and report results.