Hi There,
I am using WordPress version 4.8 and I wanted to use this plugin on my website https://www.wpchime.com but I am still worried if this is safe, since it shows the plugin hasn’t been updated since 2 years which is a huge gap.
Can anyone please confirm it is worth using? or any other alternative?
Thank you
]]>There is a problem when wordpress using not standard table prefix – the slug is ignored.
Sql queris had to be:
$sql = sprintf(“SELECT term_id FROM {$wpdb->prefix}terms WHERE slug = ‘%s’ LIMIT 1”, $category_slug);
not
$sql = sprintf(“SELECT term_id FROM wp_terms WHERE slug = ‘%s’ LIMIT 1”, $category_slug);
Please notice there is 2 such queries.
]]>In the blogroll_links_handler function I commented the following code:
$sql = sprintf("SELECT term_id FROM wp_terms WHERE slug = '%s' LIMIT 1", $category_slug);
$results = $wpdb->get_results($sql);
$category_id = $results[0]->term_id;
and added this in it’s place:
$category = get_term_by('slug', $category_slug, 'link_category');
$category_id = $category->term_id;
]]>
If Blogroll Links stops working on your WP install then try downgrading to 2.2 – that does seem to work.
]]>I cannot seem to get either the new shortcode or the old version to work any longer.
]]>Is it possible to add a feature for having a successful xhtml validation?
In particular it should be possible to remove the “target” attribute from anchors.
Thanks.
Despite what the summary box above says, Rajiv’s plug-in definately works for WordPress version 3.01
]]>