Turbulence

$ID = get_the_ID();
add_post_meta($ID, 'Author', 'K.Sreenivasan', True);
add_post_meta($ID, 'Credits', '2', True);

$AUTHOR = get_post_meta(get_the_ID(),'Author',True);
$CREDITS = get_post_meta(get_the_ID(),'Credits',True);
echo "

by $AUTHOR ($CREDITS credits)

“;
?>

Comments are closed.