BBP_Default::localize_topic_script()

Load localizations for topic script


Description Description

These localizations require information that may not be loaded even by init.


Source Source

File: templates/default/bbpress-functions.php

	public function localize_topic_script() {

		// Single forum or topic
		if ( bbp_is_single_forum() || bbp_is_single_topic() ) {
			wp_localize_script( 'bbpress-engagements', 'bbpEngagementJS', array(
				'object_id'          => get_the_ID(),
				'bbp_ajaxurl'        => bbp_get_ajax_url(),
				'generic_ajax_error' => esc_html__( 'Something went wrong. Refresh your browser and try again.', 'bbpress' ),
			) );
		}
	}

Top ↑

Changelog Changelog

Changelog
Version Description
2.1.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.