• I’ve created a div box that you should be able to have widgets in.

    I have the following operation code in a custom template:

    <div id="box">
    <?php if ( !function_exists('dynamic_sidebar')
            || !dynamic_sidebar() ) : ?>
     <li id="about">
      <h2>Abot</h2>
      <p>This is my blog.</p>
     </li>
     <li id="links">
      <h2>Links</h2>
      <ul>
       <li><a href="http://example.com">Example</a></li>
      </ul>
     </li>
    <?php endif; ?>
    </div>

    What do I need to pull in widgets? how to style it? / thanks!

    I have red this one but cant make it. http://codex.wordpress.org/Widgetizing_Themes

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Problem with widgetized box.’ is closed to new replies.