crp_after_list_item
Filter the closing tag of each list item.
Type: filter
Since: 1.9
Source: includes/frontend/class-display.php line 706
Parameters
| Type | Name | Description |
|---|---|---|
string |
$after_list_item |
Tag after each list item. Can be defined in the Settings page. |
object |
$result |
Object of the current post result |
array |
$args |
Array of arguments |
Usage
add_filter( 'crp_after_list_item', function($after_list_item, $result, $args) {
// ...
return $after_list_item;
} );