trofo
Forum Replies Created
-
Forum: Plugins
In reply to: [itemprop WP for SERP/SEO Rich snippets] itemprop author informationThank you very much.
You can see how the pluging works on my blog here.
Forum: Plugins
In reply to: [itemprop WP for SERP/SEO Rich snippets] itemprop author information@Umbrovskis, I sterted using the plugin and noticed that there is a page where you can specify whatever author you want. So that does the trick for me (as I don’t have an multi-author blog).
One last thing: when you get the excerpt you use this code:
$ipwp_post_dsc = apply_filters('ipwp_post_dsc', $ipwp_n->ipwp_excerpt_maxchr(get_option('smcipwp_maxlenght'), strip_shortcodes($thisipwp_post->post_content) )); // Extending @since 3.1
so if my post starts whith a long HTML tag the excerpt will be empty.Could you please change the above line with the one bellow?
$ipwp_post_dsc = apply_filters('ipwp_post_dsc', $ipwp_n->ipwp_excerpt_maxchr(get_option('smcipwp_maxlenght'), strip_tags(strip_shortcodes($thisipwp_post->post_content)) )); // Extending @since 3.1I just added a
strip_tags.Forum: Plugins
In reply to: [itemprop WP for SERP/SEO Rich snippets] itemprop author informationThank you very much for the quick reply.
Any estimate on when will this be available?
Forum: Plugins
In reply to: [itemprop WP for SERP/SEO Rich snippets] itemprop author informationAs a suggetion, you could try to read the “Google +” information from the profile and if there is no such property then you could use the information you are using right now.
Thank you.