Function Reference: geodir_payment_invoice_detail_page_title

Summary

This function has not been documented yet.

Filters

‘geodir_page_title_class’ [Line: 4475]

‘geodir_page_title_header_class’ [Line: 4477]

‘geodir_invoice_detail_page_title_text’ [Line: 4483]

Source Code

function geodir_payment_invoice_detail_page_title( $invoice_id = NULL ) {
	$class = apply_filters('geodir_page_title_class', 'entry-title fn');
	
	$class_header = apply_filters('geodir_page_title_header_class', 'entry-header');
	
	echo '

'; $title = wp_sprintf( __( 'Invoice #%s' , 'geodir_payments' ), geodir_payment_invoice_id_formatted($invoice_id) ); echo apply_filters('geodir_invoice_detail_page_title_text', $title); echo '

'; }