pixelfight
Forum Replies Created
-
In 2.5, I can’t see the page id under manage-> pages hmm anyone know about 2.5?
Forum: Installing WordPress
In reply to: Referencing absolute image path?you can also use the plugin “Batch upload” ;-)It will resize images for you!
Forum: Your WordPress
In reply to: WP 2.2 Permalink Redirect for posts?I know, I am trying to get an idea how to do this to! No one ever replies with anything useful, except to scold me when I “bump” a message… I just want confirmation when people post, to say that it was successful, or not successful and they need to re-submit their comment. How hard is that?
Forum: Developing with WordPress
In reply to: Close popup after submitting comment in pop up windownoone even answered..still wondering how to do this simple thing
Forum: Plugins
In reply to: The latest post from a category in the sidebarI am using that code to pull the last 5 from one category, now how can I modify the above code to pull the last entry from each category? thanks in advance
Forum: Plugins
In reply to: Problems with Category IconsI have WordPress 2.1.2 I can’t find a way to assign the icons to a category.
Forum: Plugins
In reply to: WordPress as a photo blog?I have used Yapb for my photoblog. I love it!
https://photos.chicagosnapshot.com
Also working on this site…
Forum: Fixing WordPress
In reply to: Parent category that leads to a list of the parents sub categoriesfigured it out myself ??
Forum: Fixing WordPress
In reply to: Sorting thumbnails by categoryCan anyone help? Please ?? I simply want to sort my thumbnails dynamically by category. Also, I would like to list the title of the category above each group of thumbnails.
This is my code so far
<!-- put the stuff that make the thumbnails here -->
<?php
$posts = get_posts('numberposts=50&offset=1&category=1');
foreach($posts as $post) :
setup_postdata($post);?>
<!-- BEGIN post -->
<div id="postg-<?php the_ID(); ?>" class="postg clearfix"><a>" title="">
<!-- install for yapb thumbails -->
<?php if (!is_null($image = YapbImage::getInstanceFromDb($post->ID))): ?>
<div id="thumbs"><ul><p><img src="<?php echo $image->getThumbnailHref(array('w=150', 'h=66','zc=1','fltr[]=usm|40|0.5|3')) ?>" width="150" height="66" ></p></ul>
</div>
<?php endif ?>
<!-- install for yapb thumbails --></a>
</div>
<!-- END post -->
<?php endforeach; ?>
<!-- put the stuff that make the thumbnails here -->Forum: Fixing WordPress
In reply to: Displaying just the link cat titleIs there a tag that will print the title of the link category?
Forum: Everything else WordPress
In reply to: Hosting a wordpress photo blogThanks for the input! Currently I am with one webhosting company thats servers are getting overloaded… ??
Forum: Plugins
In reply to: Yapb to create thumbnails for all postsThe maker of the plugin got back to me, here is the code that works for me FYI.
<?php
$posts = get_posts(‘numberposts=5’);
foreach($posts as $post) :
setup_postdata($post);
?>
…
<!– install for yapb thumbails –>
<?php if (!is_null($image = YapbImage::getInstanceFromDb($post->ID))): ?><img src=”<?php echo $image->getThumbnailHref(array(‘w=90′,’fltr[]=usm|30|0.5|3’)) ?>” width=”90″ >
<?php endif ?>
<!– install for yapb thumbails –>
…
<?php endforeach; ?>Forum: Plugins
In reply to: Yapb to create thumbnails for all postsActually this is the plugin that I am using.
https://johannes.jarolim.com/blog/wordpress/yet-another-photoblog/adapting-templates/#pages
I followed the directions, but these directions don’t work for pages created from page templates.