mtx212s
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Only displaying posts from certain categoriesGot it working. Now I need to limit the post amount displayed, but I can’t get it to work properly with the ‘showposts=3’ tag.
Forum: Themes and Templates
In reply to: Different page layouts for different pagesFigured it out.
I needed to make a different .css as well for the individual .php files to reference. Thanks!Forum: Themes and Templates
In reply to: Different page layouts for different pagesNo, if you look at the link I posted my content section is down a bit and to the left. On the home page, there are several different elements that WILL NOT carry over to the other pages. The content section needs to be in a different area, not just contain different content. The main page has many buttons and other CSS elements that won’t be included in the single pages.
Forum: Themes and Templates
In reply to: Different page layouts for different pagesI guess I’m just not that good with coding then.
So if I create a new template, do I need to re-code the size and position of the content sections, etc?Forum: Themes and Templates
In reply to: Getting different posts to show up on different pagesSo only posts categorized as such will show up on those pages? What about my home page, will all posts show up there?
Forum: Fixing WordPress
In reply to: Changed My URL, now nothing works!!!Ahhh. I fixed it so I can access my wp-admin, and my home page works. But none of my other pages work now, it just says “page not found”. Why aren’t the links working now??
Forum: Fixing WordPress
In reply to: Changed My URL, now nothing works!!!Solved. I used this tutorial and it worked.
http://codex.wordpress.org/Changing_The_Site_URLForum: Themes and Templates
In reply to: Sidebar Links Not Working?Yeah I must have copied it from the wrong page, I have mailto on the rest of them and it still isnt working
Forum: Themes and Templates
In reply to: Recent Posts on Static Home Page<div class="Layer-28 textcontent" > <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div <?php post_class() ?> id="post-<?php the_ID(); ?>"> <h3 class="storytitle"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3> <div class="meta"><?php _e("Filed under:"); ?> <?php the_category(',') ?> — <?php the_tags(__('Tags: '), ', ', ' — '); ?> <?php the_author() ?> @ <?php the_time() ?> <?php edit_post_link(__('Edit This')); ?></div> <div class="storycontent"> <?php the_excerpt(); ?> </div> <div class="feedback"> <?php wp_link_pages(); ?> <?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?> </div> </div> <?php comments_template(); // Get wp-comments.php template ?> <?php query_posts('showposts=1'); while(have_posts()) : the_post(); ?> <ul> <li><h3><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3> <ul><li><?php the_content_limit(520); ?></li> </ul> </li> </ul> <?php endwhile; ?> <p><?php _e('Sorry, no posts matched your criteria.'); ?></p> <?php endif; ?> <?php posts_nav_link(' — ', __('« Newer Posts'), __('Older Posts »')); ?> <?php wp_footer(); ?> </div> </div>That is my code, I’m still getting a syntax error
Forum: Themes and Templates
In reply to: Recent Posts on Static Home PageThat page is a “Not Found”. Is there another link?
Forum: Themes and Templates
In reply to: Recent Posts on Static Home PageI just get a syntax error. What do I need to be replacing with that?
Forum: Themes and Templates
In reply to: Unwanted index.php changesAssigning the “blog” page to something else didn’t work, but assigning the “home” page to something other than home.php did. Thanks for the help, it must recognize home.php and index.php as the same?
Forum: Themes and Templates
In reply to: Template Changes Affecting Blog AND Home??Any help?
Forum: Themes and Templates
In reply to: News Feed on Static Home Page?I downloaded the plugin but I really don’t know how to use it. I want my most recent 5 posts from my blog page to show up on my home page. I don’t know if I’m missing something but I can’t find anything that does that within the plugin.
Forum: Themes and Templates
In reply to: Using Excerpts in 3.0For a minute I tried using an ExcerptThumbnail plugin, but it didn’t let me customize the size of the thumbnail and float the content to the right. I’ll give this a try.