thank you alchymyth ??
custom field code work perfect, but the bracket text not appear after the post title ends.the text appear on second line
like this
this is sample
(hot)
i try div span class but can’t success here is my full code
<?php $myposts = get_posts('numberposts=23&offset=0');foreach($myposts as $post) :?>
<a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a>
<?php $hot = get_post_meta($post->ID,'raw_text',true); if($hot) { echo '<span class="css-'.$hot.'"> ('.$hot.') </span>'; } ?>