Thanks.
I’ve used these codes before the title in theme’s post php file to use this feature:
// The Ticker -> Before the main title
<h3 class="entry-ticker">
<?php
$Ticker_value = get_post_meta( get_the_ID(), 'Ticker', true );
if( ! empty( $Ticker_value ) )
{ echo $Ticker_value; }
?>
</h3>
If someone don’t like to use any addition plugin can add this part of code to where s/he like as subtitle. I’ve added it after the main title:
// The Subtitle -> After the main title
<h3 class="entry-subtitle">
<?php
$Subtitle_value = get_post_meta( get_the_ID(), 'Subtitle', true );
if( ! empty( $Subtitle_value ) )
{ echo $Subtitle_value; }
?>
</h3>
in addition I added these codes to CSS file. You can customize it as you’d like ??
h3.entry-ticker {font-size: 70%;}
h3.entry-subtitle {font-size: 70%;}
Now, just add two custom fields to the post that you like have ticker of subtitle. Name the fields “Subtitle” and “Ticker”.