calling messages_get_unread_count() in new php file
-
i am trying to build one Buddy Press Theme and i have following code in my function.php
`
function getMessages(){
jQuery.ajax({
url: ‘message.php’,
dataType: ‘html’,
success: function (data) {
jQuery(‘#user-messages span’).text(“Unread Messages: ” + data);
}
})
}`and following code in message.php
`<?php
echo messages_get_unread_count();
?>`but when code execute i got following error
`Unread Messages:
Fatal error: Call to undefined function messages_get_unread_count() in url.php on line 1
`how to solve this issue and make function available in message.php
Thanks
You must be logged in to reply to this topic.