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

Popular posts from this blog

mysql - Dreamhost PyCharm Django Python 3 Launching a Site -

java - Sending SMS with SMSLib and Web Services -

java - How to resolve The method toString() in the type Object is not applicable for the arguments (InputStream) -