Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author potasiyam

    (@potasiyam)

    Thanks for suggestions. Will let you know when added to the next version.

    Good suggestion, one workaround until the next version is released would be to change this line in the editing file justticker.php

    echo substr( strip_shortcodes(strip_tags($content)), 0, 100);

    to be commented out like this:

    //echo substr( strip_shortcodes(strip_tags($content)), 0, 100);

    this ensures only the title will be displayed.

    Just got it working nice on my site!

    Cheers

    THS

    hi, how can I make visible the title and teaser (or slugline) instead of title and content?

    solved.

    <?php
    $content = get_the_excerpt();
    echo substr( strip_shortcodes(strip_tags($content)), 0, 100);
    ?>

    thank you

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Post titles only’ is closed to new replies.