fool4Christ
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Page navigation brokenOkay, I’m not out of ideas just yet.
Try this, taking advantage of the WordPress template hierarchy:
Create a
home.php
template file with the modifiedindex.php
code copied into it — the code to call the two most recent posts.In
index.php
, place the default post display code.This way, whenever the main page is displayed,
home.php
will be used. On paged displays,index.php
should be used.Forum: Fixing WordPress
In reply to: problem with sidebar appearing below postsAh, good call, spencer. I didn’t notice that at first in FireBug. It does indeed look like the problem is caused by one or more unclosed
DIV
tags appearing within the posts.This post in particular seems to be the culprit:
https://puuurfectdesigns.com/blog/archives/10Editing it in the plain text editor to remove any unnecessary tags — looks like all that’d be necessary is the
em
tag around the last bit of the post — should do wonders for you. ??Forum: Fixing WordPress
In reply to: problem with sidebar appearing below postsIt looks like both your sidebar and your footer code are wrapped in the same
DIV
elements that your main content column is.It looks as though moving the sidebar & footer
DIV
s down below the close of the#content
DIV
should fix it up.If you are not comfortable performing the alterations yourself, you are welcome to ZIP up your theme files and email them to me at rick.beckman
@
gmail.com and I will send you the altered files as soon as possible.Forum: Fixing WordPress
In reply to: Page navigation brokenWhen you say it displays index.php again, I’m not sure what you mean.
Is it only displaying two previous posts, as opposed to ten?
If that’s the case, perhaps a conditional in index.php is in order, something along the lines of this:
<?php if ( is_home() ) query_posts('posts_per_page=2'); else query_posts(); ?>
Forum: Fixing WordPress
In reply to: Can’t Change Privacy SettingAdam, I’m not sure what would be causing the Fatal Error; however, I can suggest an alternative means of switching the privacy options.
Visit
wp-admin/options.php
on your blog. If you haven’t come across this screen before, don’t be surprised — it’s not linked to anywhere within the admin panel. It’s purpose is simply to show all of your blog’s configuration options — anything placed in theoptions
table of your database, whether plugin, theme, or core. Be careful what you change within this screen!Anyway, you’ll want to find the
blog_public
option in that list. If you want your blog to be indexed by search engines, make sureblog_public
option is set to1
and save.Finally, visit your blog and View Source. Ensure that the following bit of code does not appear:
<meta name='robots' content='noindex,nofollow' />
Forum: Plugins
In reply to: Echoing Text in Footer via PluginI tried that first, actually, adding the “10” when I saw that “priority” variable mentioned on the Codex. I added it thinking it might make a difference.
It didn’t. Neither works.
You can check out my currently used code here:
https://rickbeckman.org/wp-content/plugins/php-linkifier.phpsStill doesn’t work. :\
Forum: Plugins
In reply to: Tracking Stats on Two Blogs — 1) Domain. 2) On subdomaniAnyone have any ideas on what I can check to see why this isn’t working?
Are more details needed?
Forum: Plugins
In reply to: Tracking Stats on Two Blogs — 1) Domain. 2) On subdomaniAndy, I had that same suspicion and verified it before posting here. I even hardcoded both the Blog & Site URLs within wp-config.php so there wasn’t any question about it.
:\
(I’m enjoying the stats immensely on a handful of other blogs, though. Great job!)
Forum: Installing WordPress
In reply to: Tags, why do I need them>?Tags help to categorize your posts with sites like Technorati, so yes, they may provide a benefit in attracting visitors.
Tag archives on your blog itself also provide search engines pages of similar content to index — in addition to simple category archives — which provides yet another entry point for visitors.
The way I look at it, categories & tags work together quite well.
Categories are like folders. Say you have these folders: Current Events, Technology, Meta, and Sports.
Those are broad; tags let you get more specific and allow you to connect content posted in one category with content in another.
For instance, you might have posts in the Technology cat about WordPress plugin releases you are interested in. Such posts may be tagged “WordPress, plugins” or so. And you may also have in your Meta category a post describing the plugins you are currently using on your own blog — again, the same tags would be used.
The depth of organization is entirely up to each user, but having categories & tags together provides a very powerful framework for organization, in my opinion.
Forum: Plugins
In reply to: Stats Plugin Won’t Accept API KeyI’m having a similar problem with a blog hosted on a subdomain. On the domain itself, I have the stats plugin (w/ API key) working fine.
On the subdomain blog, which is owned by someone else, his API key won’t work for the plugin there. It says the blog was already registered with my API key — subdomains aren’t considered separate from the domain by the WordPress.com system, it seems. When entering my API key on the subdomain blog, it works, but the stats displayed on the Dashboard are the domain’s stats, not the subdomain’s.
So if your problems are arising on a blog hosted on a subdomain and an API key has already been used on the domain itself, that may be the source of your problems.
Forum: Fixing WordPress
In reply to: Organizing a Site Using WP’s PagesBump.
Forum: Fixing WordPress
In reply to: <ins> quicktag not working in pages?“ins” is an (X)HTML tag, if I’m not mistaken.. [INS]Content “inserted” into a page…[/INS] (brackets replaced by proper HTML markup, of course)…
It is used to denote information that has been edited into a post at a later date. Contrast this with the DEL tag, which denotes information to be removed from a post at a later date (or something like that).
By default, INS content is underlined and DEL content is struckthrough. Both can be altered via styling, as usual.
Forum: Fixing WordPress
In reply to: 1.5’s Pages — A Problem & a QuestionHmmm, it would seem that I should have searched the Codex, as its documentation of wp_list_pages() has been quite helpful.
However, that doesn’t help fix the bug that if a Page includes the “nextpage” tag, that the menu breaks while viewing that page…
Forum: Fixing WordPress
In reply to: 1.5’s Pages — A Problem & a QuestionBump.