I\'m writing a simple function and for some reason(probably a simple one) it\'s not working for me and I was wondering if you guys could help me out.
functio
Strpos won't work with an int, so you need to cast the ID to a string. Try this:
$ID = (string)$postID;