blackc2004:
Sure, what you’re looking to do really isn’t all that hard to implement whatsoever. We can do it one of two ways: the first is for me to rewrite a second plugin with just the basic function that you are looking for, or to just tell you how to modify the current plugin to get what you need/want. I prefer the latter, so that’s what I’ll describe here.
- On line 31, you should see:
$use_stylesheet = 1;
Set that to 0.
- On line 101, you should see:
add_filter('the_content', 'add_post_counts');
Put two // in front of it. This will keep the plugin from automatically adding the counts to your more text if you *do* use it.
- Put this somewhere in your code to get the post counts to print:
<?php
$postcounts = get_post_counts("0"); // 1 to show image counts, 0 to not.
echo $postcounts;
?>
-
That’s it. Should work the way in which you want it to, with minimal work. Feel free to email me if you have any problems, use the contact link on my site, blindmuse.com. Hope it all goes well.