Function Reference: geodir_action_home_content

Summary

This function has not been documented yet.

Package

GeoDirectory

Change Log

Since: 1.0.0

Actions

‘geodir_main_content_open’ [Line: 3380]

‘geodir_before_home_content’ [Line: 3386]

‘geodir_home_content_inside’ [Line: 3392]

‘geodir_after_home_content’ [Line: 3398]

‘geodir_main_content_close’ [Line: 3400]

Source File

geodir_action_home_content() is located in geodirectory_template_actions.php [Line: 3377]

Source Code

function geodir_action_home_content()
{
    /** This action is documented in geodirectory_template_actions.php */
    do_action('geodir_main_content_open', 'home-page', 'geodir-main-content', 'home-page');
    /**
     * This called before the home page main content.
     *
     * @since 1.0.0
     */
    do_action('geodir_before_home_content');
    /**
     * This is used to add the content to the home page main content.
     *
     * @since 1.0.0
     */
    do_action('geodir_home_content_inside');
    /**
     * This is called after the homepage main content.
     *
     * @since 1.0.0
     */
    do_action('geodir_after_home_content');
    /** This action is documented in geodirectory_template_actions.php */
    do_action('geodir_main_content_close', 'home-page');
}