{# Get the title and optionally truncating it #} {% set item_title = item.title %} {% if options.title_max_length > 0 %} {% set item_title = item_title|truncate(options.title_max_length) %} {% endif %} {# The item title #} {% set item_url = wpra_item_url(item, options) %} {# Show the title #} {% if options.title_is_link %} {{ item_title|raw }} {% else %} {{ item_title|raw }} {% endif %} {{ options.title_after }} {# Prepare date HTML class and formatted strinng #} {% set date_str = item.timestamp|date(options.date_format) %} {% set date_class = "feed-date" %} {# If time-ago format is used, use alternate format and HTML class #} {% if options.date_use_time_ago %} {% set date_str = item.timestamp|time_diff %} {% set date_class = "time-ago" %} {% endif %} {{ wp_filter('template/list/before_item') }}
{% if options.source_enabled %} {{ options.source_prefix }} {% if options.source_is_link %} {{ item.source_name }} {% else %} {{ item.source_name }} {% endif %} {% endif %} {% if options.date_enabled %} {{ options.date_prefix }} {{ date_str }} {% endif %} {% if options.author_enabled and item.author|length > 0 %} {{ options.author_prefix }} {{ item.author }} {% endif %}
{% include "feeds/_parts/audio-player.twig" %} {{ wp_filter('template/list/after_item') }}