cableghost
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Active PHP URLExcellent. It must be ok authoring, because it does not trip W3C.
Thanks!
-Scott
Forum: Plugins
In reply to: [Plugin: Google XML Sitemaps] Sitemap and googlebot-ImageThanks Clayton. I guess I may be a little confused about the ‘virtual’ piece of this…
In using Platinum SEO and XML Sitemap plug-ins, together they dynamically create my robots file entries (at least I believe that’s the way they work). And, XML Sitemap creates a virtual robots file.
Granted, I could turn off the virtual part and create one, but then I would have to manually edit it going forward with any changes made to new posts/pages, correct?
-Scott
Forum: Fixing WordPress
In reply to: Capture Contact Us DataThank you, I will check it out.
Forum: Themes and Templates
In reply to: Custom StylesheetThanks Peter, though that was not it. For others, I had to make the following edit:
<?php $stylesheetfile = '../css/scotts.css'; ?> <link rel="stylesheet" href="<?php echo $stylesheetfile; ?>" type="text/css" media="screen" />-Scott
Forum: Fixing WordPress
In reply to: SEO and Page RankI have a question about tags and SEO…
How do search engines view post tags? Are the tags used to qualify the content on the page, or are they ignored in determining relevance of the content?
I wonder this because I have an SEO-related plug-in installed and it has an area to input keywords. Is this plug-in doing something different with the words entered versus the tags?
-Scott
Forum: Fixing WordPress
In reply to: Single Post on Home PageI was able to make it work. I commented out some code and added the following to my home.php:
<?php query_posts(array('post__in'=>get_option('sticky_posts'))); ?>Forum: Fixing WordPress
In reply to: Sticky Post Title Set as <h1>Since this is not working out to well, I’m going to change approaches and have started a new post:
http://wordpress.org/support/topic/328607?replies=1#post-1271093
Forum: Fixing WordPress
In reply to: Sticky Post Title Set as <h1>Okay, no errors, but now it just displays 2 titles, both as <h2> 🙂
Here’s my post title code in common.php that is setting post titles as <h2>:
<h2 class="h2-simulate-h1-size"><a href="<?php the_permalink() ?>" rel="bookmark"> <?php the_title(); // Because single post or pages are more important for indexing, multiple post pages just have a h2 title for each item ?> </a></h2>Here’s the code to only display sticky posts on home page in my home/index.php:
<?php query_posts(array('post__in'=>get_option('sticky_posts'))); ?>Wondering if maybe there’s a means to combine your code with my existing post tile code above.
-Scott
Forum: Fixing WordPress
In reply to: Sticky Post Title Set as <h1>Unfortunately, I placed the code in index.php and I received a php error. Should it be placed in a specific position w/in index.php?
“Parse error: syntax error, unexpected T_ELSE in…”
Forum: Fixing WordPress
In reply to: Sticky Post Title Set as <h1>Thanks Shane G
The code you provided esmi does not function in this case. I am using a theme that does not presently recognize sticky posts. I had to add the following code in order to make sticky posts effective. Is there a way to edit this code to accomplish my inquiry?
<?php query_posts(array('post__in'=>get_option('sticky_posts'))); ?>-Scott
Forum: Fixing WordPress
In reply to: Single Post on Home PageI was able to set it up how I want using the sticky php code above…1 sticky post on my blog page and let the ‘Reading’ Settings dictate archives, etc.
Now, this brings up another hurdle…I would like to make my sticky post title as the page’s <h1> and not the site title. Any suggestions?
Forum: Fixing WordPress
In reply to: Single Post on Home PageThanks henholland. The problem with a static page is just that, it’s a page. I would rather have a post.
Forum: Fixing WordPress
In reply to: Related Posts PluginNever mind…I tried another plug-in (Similar Posts) and it treated the links as I wanted.
Forum: Fixing WordPress
In reply to: Related Posts PluginThanks for the input.
Here’s the link to the plug-in on WP.org: Add Post Footer
I have tried deactivating and reactivating it, but no changes.
I really think it has something to do with how the plug-in executes links. If I click on an rss feed post link from w/in my blog, it opens in my blog properly.
Forum: Fixing WordPress
In reply to: Home Page Showing Only 2 PostsYes, I had more than 2 posts and I did not edit the index loop. Since it was a new site, I just deleted the DB and started over. It is working properly so I do not know what the glitch was.