NogDog;10978761 wrote:If I'm following you correctly, you would need to include both the Pod.php and Pod_ex.php files before you can instantiate the object from the Pod_ex class. PS: It's a good idea to use include_once() or probably better yet require_once() rather than include() or require() when including class definitions, so that you don't have to worry about accidentally trying to include the same definition twice.
hey thanks for the response.
regarding including/requiring, etc, - see the Pod.php isn't referenced this way (don't show it's referenced at all in the file. I;m using wp so) but it works so I thought I could do the same with Pod_ex if I referenced the Pod.php (thru include/require) in the Pod_ex.php file...
p.s. thanks for the p.s. tip