DocEroc
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WP Post Thumbnail TAGS for full size image?Hey Voodoo do you have a link to the site you use this on?
Forum: Fixing WordPress
In reply to: WP Post Thumbnail TAGS for full size image?Ok, I will dissect that.
On my single file, I am just sitting at :
<a href="#"><img src="#"> <?php if ( function_exists("has_post_thumbnail") && has_post_thumbnail() ) { the_post_thumbnail(array(300,225), array("class" => "alignleft post_thumbnail")); } ?>On my others, ARCHIVE and such I have this:
<div class="entry"> <a href="<?php the_permalink() ?>"><?php if ( function_exists("has_post_thumbnail") && has_post_thumbnail() ) { the_post_thumbnail(array(200,160), array("class" => "alignleft post_thumbnail")); } ?></a>The linking to the articles was pretty straight-forward and does exactly what I wanted.
Just trying to get the single post to display a full size for that image is driving me nuts. I thought it would have been straight forward. But I obviously am missing something crucial. So I will hit up your thread, thanks man!
Forum: Plugins
In reply to: Widget to display posts from a given categoryEXACTLY! I can understand things better if I do them
Some stuff, just not even worth the headeache if it is not a straight plug n play type deal 😉
Forum: Plugins
In reply to: Widget to display posts from a given categoryMaybe I had done a conditional php code on a page or something that was like “include()” or “exclude()” or something.
Forum: Plugins
In reply to: Widget to display posts from a given categoryI will look for the other one too.
I try to do stuff all the time and there is usually someone who had a need and already made a plugin or widget and now I just feel, don’t reinvent the wheel 😉Saves me hours! Ok, I will check back, but still looking for that other one too.
Forum: Plugins
In reply to: Widget to display posts from a given categoryThis is one, but there was another one that was pretty popular
http://wordpress.org/extend/plugins/list-category-posts/Forum: Plugins
In reply to: Widget to display posts from a given categoryAren’t there some plugins that do this?
I saw this one http://www.frucomerci.com/list-posts-by-category-plugin-for-wordpress/I cannot find this other one I was going to use.
Can you tell a bit more of what you need?
Forum: Fixing WordPress
In reply to: Making POST THUMBNAIL link to post<a href="<?php the_permalink() ?>">That is the same process for the main index template page to link that image to the post as well.
Still looking for the code to pull the full-size image of the thumbnail
Forum: Fixing WordPress
In reply to: Making POST THUMBNAIL link to postOk, I have started this on my own.
For the ARCHIVES page, you would use this:<div class="entry"> <a href="<?php the_permalink() ?>"><?php if ( function_exists("has_post_thumbnail") && has_post_thumbnail() ) { the_post_thumbnail(array(200,160), array("class" => "alignleft post_thumbnail")); } ?></a>Placing the ANCHOR before the thumbnail and then closing the anchor just after.
So for the other pages, basically the same thing, so I will follow up…Oh, did you figure out the error or you got the menu working?
Your site looks like you got it working.
LOL, I kept refreshing your page and it kept changing!
I am checking right now for ya.
What is the link to the theme dropdown you want to use?
Forum: Fixing WordPress
In reply to: Posts won’t display when permalinks are activeHave you changed anything in your wp_options in the database?
Do you have any kind of plugin for permalinks or any activated plugins you are not using?Forum: Fixing WordPress
In reply to: Remove image bordersGood deal. Heck I was looking for the #aboutsite CSS
Forum: Fixing WordPress
In reply to: Remove image bordersThe TOP and LEFT gray border on the gallery images?