^^**Quick Wordpress Help**^^

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mattz
    Confirmed User
    • Dec 2001
    • 7697

    #1

    ^^**Quick Wordpress Help**^^

    hey,

    I was wondering how I could place image ads in-between my links in my sidebar.php file?

    Is their a plugin or how would i do this? I want to put some image ads inbetween the link categories I have in wordpress

    any help?

    thanks
  • darksoul
    Confirmed User
    • Apr 2002
    • 4997

    #2
    I'm not sure I'm getting you right.
    Do you want something like:
    Category 1
    - link 1
    - link 2
    - link 3
    IMAGE
    Category 2
    - link 1
    - link 2
    - link 3
    IMAGE
    ...
    If so, for each image you want to place
    you can create a category and when you setup it specify that
    it should display an image.
    The add one link in that category with your image.

    If you want something like:
    Category 1
    - link 1
    IMAGE
    - link 2
    IMAGE
    - link 3
    IMAGE

    you can setup that category as an image category
    and only add an image for every other link.

    I hope you get what I mean

    I'm not aware of any plugin to eazy this up, maybe someone else does tho.
    1337 5y54|)m1n: 157717888
    BM-2cUBw4B2fgiYAfjkE7JvWaJMiUXD96n9tN
    Cambooth

    Comment

    • mattz
      Confirmed User
      • Dec 2001
      • 7697

      #3
      i was looking for something like

      Category 1
      -Image (linking to something)
      Category 2
      - Image (linking to something)
      - Image (linking to something
      - Image (linking to something)


      I went under categories, but I dont see how I can add a category that I can post images in?

      Comment

      • darksoul
        Confirmed User
        • Apr 2002
        • 4997

        #4
        When you add a new category you have the option to tell it which fields to show:
        Show: Image
        Description (shown in title regardless)
        Rating
        Updated (shown in title regardless)
        1337 5y54|)m1n: 157717888
        BM-2cUBw4B2fgiYAfjkE7JvWaJMiUXD96n9tN
        Cambooth

        Comment

        • BigBen
          Confirmed User
          • Nov 2004
          • 2299

          #5
          Use the "get_links()" function. You can specify which categories to display...

          Code:
          get_links(category1);
          <img src="..." />
          get_links(category2);
          ...
          All the parameters can be found in the codex... http://codex.wordpress.org/Template_Tags/get_links

          Comment

          Working...