Hi apljdi,
thanks for reply.
$wp_version = ‘2.8.4’;
theme is praggio..
if I use add_filter to add in the content, like you said, it will add something instead of modify/replace something. am i right ?
Do I code the following way ? the output should be dynamic..
function add_before_content($content) {
$content = "<table class=\"link\">";
$content .= "";
$content .= "</table>";
return $content;
}
add_filter('the_content', add_before_content);
But I suppose I should not add something before the content, instead I should amend or replace the output..
Appreciate your kind advice…
sky