Function Reference: geodir_action_search_content

Summary

Build the content via hooks for the search page content.

Package

GeoDirectory

Change Log

Since: 1.0.0

Actions

‘geodir_main_content_open’ [Line: 3217]

‘geodir_before_listing’ [Line: 3220]

‘geodir_search_content_inside’ [Line: 3227]

‘geodir_after_listing’ [Line: 3229]

‘geodir_main_content_close’ [Line: 3231]

Source File

geodir_action_search_content() is located in geodirectory_template_actions.php [Line: 3214]

Source Code

function geodir_action_search_content()
{
    /** This action is documented in geodirectory_template_actions.php */
    do_action('geodir_main_content_open', 'search-page', 'geodir-main-content', 'search-page');
    echo '
'; /** This action is documented in geodirectory_template_actions.php */ do_action('geodir_before_listing'); echo '
'; /** * This is used to add the content to the search page main content. * * @since 1.0.0 */ do_action('geodir_search_content_inside'); /** This action is documented in geodirectory_template_actions.php */ do_action('geodir_after_listing'); /** This action is documented in geodirectory_template_actions.php */ do_action('geodir_main_content_close', 'search-page'); }