• I’ve come across this phrase in a couple of plug-ins and as a nuubee wonder if it’s possible to explain what it means?

    Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • Well, it depends on what theme you have and what you are adding

    it wants you to open a file like single.php, index.php, post.php, page.php or such, look for some code and paste their code whereever it is supposed to go

    you might want to be a little more specific what it is asking you to link or put where since different plugins have different places for links and codes

    Thread Starter ahhh

    (@ahhh)

    Thanks for being there, I was beginning to feel panic rising (5 topics and only one response over the week while the average is 4 replies). The quote (the title of this topic)is from Skippy’s Subscribe2 plugin Readme file which contains the installation instructions. S/he has directed support requests here. There’s no additional info in that file but on the webpage it says “you’ll need to create a link somewhere pointing toward subscribe.php. You can manually edit your index.php (or sidebar.php or footer.php), or you could use the WordPress Links manager.”. Well confusing no ? . . .

    not a problem. i try to at least get a direction going or ask for more info.. if it is soemthing i cannot answer or someone else understands better, its a direction to start at.

    what skippy means is that say your page is subscribe.php
    you would get your sidebar.php (or whatever the file is that has the menu on ot – depends on the theme – the names of the files can change from theme to theme) and add soemthing like (opening the file sidebar.php in wordpade or notepad and manually inserting the link for the code)

    in the default theme, it would be the file sidebar.php

    you could look through the code and manually add a link to sidebar.php ((<a href="sidebar.php">Subscribe Link</a>
    ))
    here in the code:

    <li><h2>Archives</h2>
    <ul>
    <?php wp_get_archives('type=monthly'); ?>
    </ul>
    </li>
    <li>
    <a href="sidebar.php">Subscribe Link</a>
    </li>
    <li><h2>Categories</h2>
    <ul>
    <?php wp_list_cats('sort_column=name&optioncount=1&hierarchical=0'); ?>
    </ul>
    </li>

    See how I manually added the link between the code for The Subscribe Link between Archives and the code for categories?

    Does that make a little bit of sense?

    Or, you could goto your links manager in the admin panel and add the link there so it would show up wherever your links are listed at automatically

    Thread Starter ahhh

    (@ahhh)

    Thanks, brilliant. I’m too tired to do any more now but will start with a lighter heart tomorrow. Thanks again for your kind reply.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Add a link somewhere in your template to’ is closed to new replies.