Recent

crp_after_list_item filter

crp_after_list_item

Filter the closing tag of each list item.

Type: filter
Since: 1.9
Source: includes/frontend/class-display.php line 704

Parameters

TypeNameDescription
string$after_list_itemTag after each list item. Can be defined in the Settings page.
object$resultObject of the current post result
array$argsArray of arguments

Usage

add_filter( 'crp_after_list_item', function($after_list_item, $result, $args) {
    // ...
    return $after_list_item;
} );