I need more Custom Code ‘s

Forums Forums Menus I need more Custom Code ‘s

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #282
    dred
    Member

    hey I read on page 8 there is a way to add more custom codes, could some1 point me towards the info? great pluggin.

    #3306

    You can enter the custom code via the admin panel. Just click on the ‘advanced options’ link on the admin page. There is an option to choose what appears in the dropdown, choose ‘custom 1’, ‘custom 2’ or (soon to be) ‘custom 3’. Then add your code into the appropriate box below and click submit. Your custom code will then appear on your site.

    #3307
    hilts50
    Member

    What if you want 5 custom areas… Is that something I am able to add in on my own?

    #3308

    With difficulty you can add as many custom codes as you like. By replacing the suckerfish() function in your theme with the following for example would display a list of pages, then a custom coded link to Yahoo!, then your archives, then a link to Google, then a list of your categories.

    [code:zfv6dcvu]<ul id="suckerfishnav">
      <?php wp_list_pages(‘title_li=’); ?>
      <li><a href="http://yahoo.com/">Yahoo!</a></li>
      <li><a href="#">Archives</a>
        <ul>
          <?php wp_get_archives(); ?>
        </ul>
      </li>
      <li><a href="http://pixopoint.com/">Google</a></li>
      <li><a href="#">Categories</a
        <ul>
          <?php wp_list_categories(‘title_li=’); ?>
        </ul>
      </li>
    </ul>[/code:zfv6dcvu]

    If you would like specific help in setting something like this up for your own site, then feel free to leave a post in the ‘Premium Members’ board and I’ll help put together some code suitable for your particular site.

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.