astracan
Forum Replies Created
Viewing 6 replies - 1 through 6 (of 6 total)
-
Yeah, I know, if I use the shortcode rules, but what about of my RSS?
The plugin is actived, but I put the code inside of a
pretag, due to what I explained before. Do you need I change something in the post?Thanks so much for the fast reply
Forum: Plugins
In reply to: [Tools for Twitter] [Plugin: Twitter Tools] Authentication problemSOLVED!
If are hosted on OVH, write on your .htaccess:
SetEnv PHP_VER 5And solved!
Forum: Plugins
In reply to: [Plugin: WP-PageNavi] Fatal ErrorMy PHP version is 5. And I have the same problem.
Forum: Fixing WordPress
In reply to: How to make Gravatar image a link to author’s page?I use this to show Gravatars and link to post authors in the sidebar:
In function.php…
function get_the_avatars_with_link_to_authors(){ $authors = get_users_of_blog(); foreach ($authors as $author){ $author_data = get_userdata($author->user_id); $author_nicename = $author_data->user_nicename; $author_displayname = $author_data->display_name; $link .= '<li><a href="' . get_author_posts_url($author_data->ID) . '" title="' . sprintf( __( "Ver post de %s" ), $author_displayname ) . '">' . get_avatar($author_data->ID,$size = '64') . '</a></li>'; } return $link; }In sidebar.php…
<ul> <?php printf( __( '%s', 'libra' ), get_the_avatars_with_link_to_authors() ) ?> </ul>Not the same, but I didn’t find out a solution in WordPress Forums to do what I need.
Forum: Plugins
In reply to: Customizing the permalink pageI found it!
Archive: classes.php
Line: 579🙂
Viewing 6 replies - 1 through 6 (of 6 total)