Problem solved. Solution below
Go to the Appearance Editor, from there make sure you are editing the WordPlus theme. Select the Style.css file and insert the following under the layout section
.index-column-5,
.index-column-6
(be sure to add a comma after .index-column-4
click Update file to save the changes.
After that go to Theme Functions (functions.php)
Find this section of code
array(
'1' => __('One Column','wordplus'),
'2' => __('Two Column','wordplus'),
'3' => __('Three Column','wordplus'),
'4' => __('Four Column','wordplus')
add this
'5' => __('Five Column','wordplus'),
'6' => __('Six Column','wordplus')
again be sure to add the comma after line 4.
Don’t forget to click Update file.
Now go to Appearance, Customize and Archive Layout. You can now chose 5 or 5 columns.
That’s it. If you have a large enough screen you’ll now see six columns (or five if that is your choice.