airogos
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Schedule a post to be published at a future date: Does not workAnyone 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.?
Forum: Fixing WordPress
In reply to: Weird Comment When Post Linked ToNo, 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.
Forum: Fixing WordPress
In reply to: Weird Comment When Post Linked ToYeah, I’ll just go hit myself over the head for that one. Thanks HandySolo.
Forum: Fixing WordPress
In reply to: Comments on PagesI 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 LinkI’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.