PDA

View Full Version : What functionality do you want?


ses5909
08-25-2007, 09:55 AM
Is there some kind of plugin/functionality you wish you had but haven't been able to find?

shyflower
09-05-2007, 01:10 PM
Yes. I wish there was a plugin that would list your posts titles in an index alphabetically and by category. Is there one?

Michael Martin
09-05-2007, 01:43 PM
Yes. I wish there was a plugin that would list your posts titles in an index alphabetically and by category. Is there one?

Yes!

But I can't remember where I last saw it. :(

SarahG
09-05-2007, 02:18 PM
Yes. I wish there was a plugin that would list your posts titles in an index alphabetically and by category. Is there one?

I don't know of a plugin but you could use the get_posts (http://codex.wordpress.org/Template_Tags/get_posts) template tag and simply get it to list all the posts for each category (if you're using WordPress). You'd just have to create your own page template. The only downside would be you'd need to duplicate this on the page for each category. But so long as you're not continually adding new categories then it shouldn't be so bad.

For example you just replicate this and change it for each category ID you have

<ul>
<?php $myposts = get_posts('numberposts=100&order_by=post_title&category=1');
foreach ($myposts AS $post):
?>
<li><a href="<?php the_permalink(); ?>"><?php the_title() ?></a></li>
<?php endforeach; ?>
</ul>

shyflower
09-05-2007, 02:37 PM
I don't know of a plugin but you could use the get_posts (http://codex.wordpress.org/Template_Tags/get_posts) template tag and simply get it to list all the posts for each category (if you're using WordPress). You'd just have to create your own page template. The only downside would be you'd need to duplicate this on the page for each category. But so long as you're not continually adding new categories then it shouldn't be so bad.

For example you just replicate this and change it for each category ID you have

<ul>
<?php $myposts = get_posts('numberposts=100&order_by=post_title&category=1');
foreach ($myposts AS $post):
?>
<li><a href="<?php the_permalink(); ?>"><?php the_title() ?></a></li>
<?php endforeach; ?>
</ul>

If I only understood php :o

doorlight
09-05-2007, 03:17 PM
Plugin for banners?

Dan Schulz
09-05-2007, 04:06 PM
How about a plugin to write my posts for me? :p

davemcnally
09-05-2007, 05:40 PM
How about a plugin to write my posts for me? :p

That'll do me just fine :)

Michael Martin
09-06-2007, 04:28 PM
Yes. I wish there was a plugin that would list your posts titles in an index alphabetically and by category. Is there one?

Found it! Darren Rowse posted about it today. :D

Sitemap Generator Plugin for Wordpress Dagon Design (http://www.dagondesign.com/articles/sitemap-generator-plugin-for-wordpress/)

shyflower
09-06-2007, 06:26 PM
Found it! Darren Rowse posted about it today. :D

Sitemap Generator Plugin for Wordpress Dagon Design (http://www.dagondesign.com/articles/sitemap-generator-plugin-for-wordpress/)

Good find!!!!! Thanks!!! You Rock! :rockon:

doorlight
09-14-2007, 04:04 AM
Anti-plagiarism plugin. Is there such?

ses5909
09-14-2007, 06:49 AM
That would be cool Laarni. Something that periodically ran your content through copyscape ....

Dan Schulz
09-14-2007, 10:22 PM
I'm sure Copyscape wouldn't like that. They'd probably buy the rights to the plugin and then "license" it out for a fee to cover the bandwidth hit on the servers.

Would be cool though.

sbpoet
09-15-2007, 06:15 AM
I would love a plugin for TypePad that would show the post from one, two, etc. years ago today. Just a nice little sidebar button.

Actually, there's quite a bit I would like at TypePad, without having to go to advanced templates.

adalante
09-15-2007, 07:09 AM
I wish there could be a classifieds plugin, not directory but classifieds.
For example if i were to start a site that sells used cars i would like the owner to upload the pics add descriptions etc.