php - Adding content via wordpress admin -
i'm developing wordpress theme have set of custom pages , each page has it's own content! example, there custom page content done using html need able change content of single paragraph using wordpress admin panel.
how do using wordpress framework? there special way of adding custom editable fields specific content locations in page?
just add meta box , values post meta show in html
you can generate metabox site without programing skills
https://jeremyhixon.com/tool/wordpress-meta-box-generator/
and meta field value below code
get_post_meta(get_the_id(), 'meta_key', true);
Comments
Post a Comment