4evrblu
Forum Replies Created
-
Forum: Plugins
In reply to: Adhesive Plugin returning ALL postsYeah what about? Could you drop us a more vague reply.
Whats wrong with the post date?
Forum: Fixing WordPress
In reply to: New to WordPress, love it, but have a question about linksOK I am beginning to get the hang of this. Thanks guys.
Forum: Fixing WordPress
In reply to: New to WordPress, love it, but have a question about linksWell, I have it working fairly nicely,
using
<?php get_linksbyname(”, ‘
- ‘, ‘
‘, ”, TRUE, ‘name’, FALSE, TRUE); ?>
But I want the links to be grouped according to category, and I fear the above code is missing something. I want the link names displayed, but I want the links to br grouped by blog, category and rating. Is that possible?
Forum: Fixing WordPress
In reply to: New to WordPress, love it, but have a question about linksThanks for the help, lol, but here is the issue,
wp_get_links() is a great command, but where to I put it and what tags need to enclose it?
Here is what I am currently using, and it seems to work. Took some playing but it gave me some results.
<h2><?php _e(‘Links’); ?></h2>
- <?php get_linksbyname(”, ‘
- ‘, ‘
‘, ”, TRUE, ‘name’, FALSE, TRUE); ?>
now look at http://cfcure.com/ironmind
It displays link names. But, what if I want it to display link names and discriptions?
Forum: Fixing WordPress
In reply to: New to WordPress, love it, but have a question about linksPS I am using
<h2><?php _e(‘Links’); ?></h2>
- <?php get_links(‘-1’, ‘
- ‘, ‘
‘, ‘ ‘); ?>
in my side bar, but all it does is display the word LINKS, it does not actually display THE links. Hmmmm