Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Anyone know of a plug-in (or hack) that gives more future post options – such as creating a standby list of articles to publish if no post has been made in the past 24 hours, etc.?

    Thread Starter airogos

    (@airogos)

    No, I’ve been messing with wordpress for a while, just I guess no one ever linked to me before. So I guess it’s a good thing.

    Thread Starter airogos

    (@airogos)

    Yeah, I’ll just go hit myself over the head for that one. Thanks HandySolo.

    Forum: Fixing WordPress
    In reply to: Comments on Pages
    Thread Starter airogos

    (@airogos)

    I ended up figuring this one out after much experiementing, and I don’t see a reference for this in any of the documentation. On the page.php template, which is the default template when creating a page though it doesn’t have a title at the top, I simply inserted <?php comments_template(); ?>, which I stole from another template (I think archive). I believe I put it in the loop, but just to be clear it’s the last thing on the page right before the call for the side bar, and before </div>.

    Forum: Fixing WordPress
    In reply to: Home Page Link
    Thread Starter airogos

    (@airogos)

    I’ve ended up figuring out my problem, and am posting for future reference. The above code is what I basically did, but there’s more because I wanted this link to match the formatting of the other page lists. Since the wp_list_pages function is used, I just inserted my home page link above it and added the list formatting. The full code is:

    <li><h2>Pages</h2>
    <ul>
    <li><a href="https://www.joesflix.com">Main</a></li>
    <?php wp_list_pages('title_li='); ?>
    </ul>
    </li>

    Notice how the wp_list_pages is set to no heading, as I inserted it myself to squeeze in my link. Also, list_pages doesn’t need a
    <li> code, it has it built in.

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