Home › Forums › WTI Like Post PRO › How do I use the GetWtiLikePost() function › Reply To: How do I use the GetWtiLikePost() function
November 17, 2017 at 6:38 pm
#600
Webtechideas
Keymaster
You are creating the html content and appending content to it. But you are directly printing GetWtiLikePost()
Try appending the function output like below
$html .= GetWtiLikePost();
If the above does not work, try like this
$html .= GetWtiLikePost('put');
Do let us know if this worked or not.