Tribe__Events__Aggregator__Record__Abstract::generate_title()

A simple method to create a Title for the Records

Contents

This method accepts any number of params, they must be string compatible


Return

(string)


Top ↑

Source

File: src/Tribe/Aggregator/Record/Abstract.php

	public function generate_title() {
		$parts = func_get_args();
		return __( 'Record: ', 'the-events-calendar' ) . implode( ' ', array_filter( $parts ) );
	}