• Resolved Irian

    (@irian)


    Hi,
    I have been working with Drupal and Joomla! for some time, but just started with WordPress to see how it works.

    I am trying to create a website in which all pages are devided in three columns two narrow and a wide center column.

    For me it is no problem to work with a plugin like Page Columnist or WP Post Columns, but for the user it would be nice not to think about html tags.

    I would like the WordPress edit and new page to be displayed in three columns. In this way a page can be easily overvieuwed.

    Can you help me by finding a plugin or give me a hint how to create this myself?

    Thanks,

    Irian

Viewing 1 replies (of 1 total)
  • Thread Starter Irian

    (@irian)

    For anyone looking for the same thing, I used the following:

    1. make sure you have the “hr” button on you tinyMCE bar, you can do this as follows:
      put the following code in your functions.php code:
      code

      You can change the above code to have your own order of buttons, see button options

    2. Put the following code in the loop of your index.php:
      <?php $columns = explode('<hr />', get_the_content()); ?>
    3. Put the following code in the index.php wherever you want to display the collumns:
      <?php echo wpautop($columns[n]); ?>
      For “n” use the columnnumber starting with 0.
    4. When edditing a page, use the “hr” button to create a line. From this point, the page will be split to the next column.

    Succes!
    Irian

Viewing 1 replies (of 1 total)
  • The topic ‘3 Column page, also in edit mode?’ is closed to new replies.