Deprecated
This function has been deprecated.
ap_hover_card_attributes( integer $user_id, boolean $echo = true )
Description #
Return or echo hovercard data attribute.
Parameters #
- $user_idinteger (Required) User id.
- $echoboolean (Optional) Echo or return? Default value: true
Source #
File: includes/deprecated.php
function ap_hover_card_attributes( $user_id, $echo = true ) { if ( $user_id > 0 ) { $attr = ' data-userid="' . $user_id . '"'; if ( true !== $echo ) { return $attr; } echo $attr; // xss okay. } }
Expand full source code Collapse full source code View on GitHub: includes/deprecated.php:530
Add your comment