Ryan Fitzer
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How do I customize how one category is viewed?I’ll look into it for you. I have only done this on a Page page so far.
Forum: Plugins
In reply to: Showing Incoming Links on Individual PostsFound one (well 2, actually)!
This one shows links coming in on individual posts and pages:
http://dev.wp-plugins.org/wiki/Kramer
This one displays a list of links that are coming to the blog in general:
Forum: Fixing WordPress
In reply to: the archive in new pageCreate a Page named “Archives” in the WordPress admin under Write > Page. Before you hit save, look to the right and open “Page Template”. Hit the dropdown and select the archives template. Now hit save.
Forum: Fixing WordPress
In reply to: Footer moves to the left/rightYou just need to put
<?php get_footer(); ?>in the same parent in all the template files that use it.Forum: Fixing WordPress
In reply to: Footer moves to the left/rightTake out the Float and Width property and then give the #footer a background-color:red, #container a background-color:blue and your #page a background-color:green. This will make apparent which divs are which and more importantly, show you what the footer’s parent containter is on each page. The problem is that the footer is located in a different parents on each page so one general css rule won’t do the trick unless the footer is in the same parent consistantly thoughout the site.
Forum: Fixing WordPress
In reply to: Always send user to Write PAGE (not post)Nope.
Forum: Requests and Feedback
In reply to: Security question about wp-config.phpI know this is possible, my interest was if TheAuthor was able to use this technique, disable php and then test the security issues with success? I would like to know. I see a lot of posts about people being hacked.
Forum: Installing WordPress
In reply to: Post editor problems.Also, updating to the lastest version of WP might fix a few things.
Forum: Fixing WordPress
In reply to: display first post of a categoryThis thread might help.
Forum: Fixing WordPress
In reply to: the archive in new pageWhat theme are you using and does it have an “archives.php” file included in the template folder?
Forum: Requests and Feedback
In reply to: Security question about wp-config.phpNot sure about the security side of it all but have you implemented this technique with success?
For this plugin, you should only use the inline uploader (not the image button in the text editor, but the one below the editor). Not sure why except that I’ve never relied on the text editor’s image upload feature (it may very well work with some tweaking, or not). I have only used this plugin with the inline uploader.
Now that we have that established, the inline uploader makes a thumbnail by default. For example, if you upload an image with a file name of “image.jpg” the WP uploader will automatically create a jpg named image.thumbnail.jpg. This is the thumbnail that
<?php post_image(); ?>will call.You only need to put this code on the main page (index.php). All other pages should have the normal loop (specifically, “single.php”). From here, the plugin will take the first image in your post (full size version, not a thumb) and use it’s thumbnail for
<?php post_image(); ?>You see what I mean?
Forum: Fixing WordPress
In reply to: Embedding an iframe into a postI just gave it a whirl on my install of WP 2.0.3 w/o the WYSIWYG editor and it worked perfect. Here is the syntax I used:
<iframe src="http://wordpress.org/support/topic/81166?replies=1" title="The WP Thread"></iframe>Forum: Themes and Templates
In reply to: Display Posts by AuthorGreat. Now mark this puppy resolved.
Forum: Plugins
In reply to: Keep categories from showing up on homepageThanks.