I have been building my first theme on WordPress and have run into problem while adding content into different sections.
My HTML is somewhat like this,
<div id="maintext"> <-- Text --> </div> <div id="products"> <-- Text and Images --> </div> <div id="about_company"> <-- Text boxes --> </div>
How do I make sure the content added via the WordPress editor falls under the respective divs ? For the "maintext" div I'll load the content from the page itself but how do I add content to the other 2 divs dynamically ?
I searched on a couple of forums and many suggested to add content using widgets, is there any way it can be done without using widgets ?
Any help will be gladly appreciated.
Continue to edit the WordPress page in one tab, using the admin area. On the other, you will view the front end of your website to check each change you make. As you make edits and save them, you can tab over to the site’s front end.
To redo, you must undo something first. When you make substantial changes to your WordPress page or post click the UPDATE button to save the page. This updates the public-facing page. Always refresh your page when viewing changes on the front end to check your work. WordPress frequently auto-saves drafts of the page.
When you make substantial changes to your WordPress page or post click the UPDATE button to save the page. This updates the public-facing page. Always refresh your page when viewing changes on the front end to check your work. WordPress frequently auto-saves drafts of the page.
The easiest way to open the front end of your WordPress website in a new tab is; 1 In the admin area – hover over the house icon, top left of the screen. 2 From the drop-down menu, RIGHT CLICK on ‘Visit Site’. 3 Click “Open link in new tab”. I have underlined this in red below.
You've got three options I believe:
I believe that the thing you are looking for is option 2. The others are more full-site oriented, if you want the extra content to show up on every single page.
Unfortunately adding multiple editable fields in a single page is not particularly easy using WordPress by itself.
Many WP devs I know (myself included) rely on the Advanced Custom Fields Plugin for additional content fields.
The steps to make this happen:
1) Install the ACF the plug.
2) In the settings area for ACF create some new fields.
3) Assign the new fields to appear for a specific page or set of pages.
4) Update your page-template for the given page(s) so that the new fields are displayed.
For instance you might create a set of standard wysiwyg fields and then assign them to the 'overview' page. Let's call these fields: main_text, products_info and about_company. Once the fields have been created and assigned to a page, when you edit that page the additional fields will be available to edit.
For these new fields to be seen by visitors, they must be added to the page-template you use for your overview page. The code could be something like this:
<div id="maintext"> <!-- Text --> <?php if(get_field('main_text')){ //if the field is not empty echo '<p>' . get_field('main_text') . '</p>'; //display it } ?> </div> <div id="products"> <!-- Text and Images --> <?php if(get_field('products_info')){ //if the field is not empty echo '<p>' . get_field('products_info') . '</p>'; //display it } ?> </div> <div id="about_company"> <!-- Text boxes --> <?php if(get_field('about_company')){ //if the field is not empty echo '<p>' . get_field('about_company') . '</p>'; //display it } ?> </div>
There are lots of good examples here. If you are feeling really ambitious, rather than install the plugin you could even include ACF directly in your theme.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With