Skip to content

mc_list_title_title

github-actions[bot] edited this page Jun 3, 2026 · 4 revisions

Format a single title for display in single titles on list view.

Auto-generated Example

add_filter(
   'mc_list_title_title',
    function(
        string $title,
        object $now
    ) {
        // Your code here.
        return $title;
    },
    10,
    2
);

Parameters

  • string $title Event title.
  • object $now Event object.

Returns

string

Files

apply_filters( 'mc_list_title_title', strip_tags( wp_unslash( $now->event_title ), mc_strip_tags() ), $now )

← All Hooks

Clone this wiki locally