Action

directory_before_post_title

Purpose

Helpful to display anything below the listing title. You can use it by having your function an echo output to the browser or to perform background tasks. Your functions should not return or take any parameters as it provides no parameters.

Folder Location

../wp-content/plugins/Tevolution-Directory/templates/

Used in files

taxonomy-listingcategory.php, taxonomy-listingtags.php

Example

<?php

function directory_after_post_title_entry () {

echo '<span>New</span>';

}

add_action('directory_after_post_title','directory_after_post_title_entry');

?>