-
I want add to my functions.php , but not work .
can u help me ?
code
add_filter( ‘the_content’, ‘svp’ );
function svp( $content ) {
if( is_single() )$content=”<?php echo do_shortcode(‘
[fvplayer src='
<?php echo get_post_meta($post->ID,"shopvideo",true);?>
' splash='
<?php echo get_post_meta($post->ID,"shopimg",true);?>
']‘); ?>”.$content;
return $content;
}
code