wordpress plugin help

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • safeasfcuk
    Registered User
    • Sep 2006
    • 63

    #1

    wordpress plugin help

    ok guys i want a find a plugin that automaticly puts a link under every post i make for example if i want to put a ref link for ifriends under ever post then it should do this

    iv seen it on others sites but dont know what its called any one know?

    My Best Sponser is Silvercash
  • naughty_wld
    Confirmed User
    • Jun 2006
    • 287

    #2
    you could try the Text Replace plugin, this will replace any text in your posts to a certain text you decide.. if you need help hit me up at ICQ.
    http://www.coffee2code.com/wp-plugins/
    Example: i post a message, underneath it i post :ftv: and it will be replaced with FTV-Girls and right affiliate code.
    If you just need one code under every single post you might change you layout
    ICQ: 256-323-087
    :food-smil

    Comment

    • safeasfcuk
      Registered User
      • Sep 2006
      • 63

      #3
      what file would the post fucntion be in then if i did just want one code in every post?

      My Best Sponser is Silvercash

      Comment

      • modF
        Confirmed User
        • Aug 2002
        • 1888

        #4
        If you want to put one link throughout the site, then just change up your templates/theme files.

        I do things
        skype:themodF

        Comment

        • jryan89
          Confirmed User
          • Nov 2006
          • 818

          #5
          did they answer your question?

          Comment

          • safeasfcuk
            Registered User
            • Sep 2006
            • 63

            #6
            yes and no. lol
            any know which file specificly to change to dislpay a link under each new post?

            My Best Sponser is Silvercash

            Comment

            • fris
              Too lazy to set a custom title
              • Aug 2002
              • 55679

              #7
              edit index.php and single.php (for single posts)

              i have an example on one of mine.

              www.squirtingblog.org

              displays a couple textlinks before every post
              Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.

              Comment

              • BigBen
                Confirmed User
                • Nov 2004
                • 2299

                #8
                Just edit the main page template and put your links within "the loop".

                Comment

                • AsianRain
                  Registered User
                  • Oct 2006
                  • 68

                  #9
                  I tried a number of plugins, but they easily get screwed up with complex links with referrer codes. I went with a modify template approach.

                  In wordpress...

                  Step 1: Add a link category.
                  Step 2: When you create the link category, set the category to DISPALY RANDOMLY (if you want to cycle thru multiple links) and set the DISPLAY NUMBER as 1 (to make only one link display).
                  Step 3: Make links for your sponsors and attach them to the category above. I have two setup.
                  Step 4: Go to presentation in wp and edit your wp theme - index page and page template. Add this code:

                  <div class="storyContent">
                  <?php the_content(); ?> <!-- This line is already there. It displays the content of your post. -->
                  <!-- ADVERTISEMENT LINK -->
                  <?php wp_get_links(8); ?> <!-- The number should be the number of your ad links category. Varies. -->
                  <!-- END AD LINK -->

                  You can see this in action on my blog http://thesexpat.net

                  Good luck. It take a little more effort but the end solution is ber flexbile and effective. AR+

                  ICQ: 168.824.451

                  Comment

                  Working...