Function Reference: geodir_action_author_content

Summary

Build the content via hooks for the author page content.

Package

GeoDirectory

Change Log

Since: 1.0.0

Actions

‘geodir_main_content_open’ [Line: 2980]

‘geodir_before_listing’ [Line: 2983]

‘geodir_author_content_inside’ [Line: 2990]

‘geodir_after_listing’ [Line: 2992]

‘geodir_main_content_close’ [Line: 2994]

Source File

geodir_action_author_content() is located in geodirectory_template_actions.php [Line: 2977]

Source Code

function geodir_action_author_content()
{
    /** This action is documented in geodirectory_template_actions.php */
    do_action('geodir_main_content_open', 'author-page', 'geodir-main-content', 'author-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 author page main content. * * @since 1.0.0 */ do_action('geodir_author_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', 'author-page'); }