bp_get_activity_comment_form_nojs_display()

Return the activity comment form no JavaScript display CSS.


Description Description


Return Return

(string|false) The activity comment form no JavaScript display CSS. False on failure.


Top ↑

Source Source

File: bp-activity/bp-activity-template.php

	function bp_get_activity_comment_form_nojs_display() {
		global $activities_template;

		if ( isset( $_GET['ac'] ) && ( $_GET['ac'] === ( $activities_template->activity->id . '/' ) ) ) {
			return 'style="display: block"';
		}

		return false;
	}

Top ↑

Changelog Changelog

Changelog
Version Description
1.2.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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