maxgalleria_gallery_widget_view_more

Description

This filter returns the "view more" link when a gallery widget is displayed.

Usage

add_filter('maxgalleria_gallery_widget_view_more', 'gallery_widget_view_more', 10, 3);

Parameters

$html
The output of the "view more" link.

$view_more_url
The URL of the "view more" link.

$view_more_text
The text of the "view more" link.

Example

add_filter('maxgalleria_gallery_widget_view_more', 'gallery_widget_view_more', 10, 3);

function gallery_widget_view_more($html, $view_more_url, $view_more_text) {
}

Source Files

Defined in maxgalleria-hooks.php.

Used in widgets/gallery-widget.php.