I have problem with cfs(custom field suit) in wordpress. I need to get data from cfs field:
<?php $page1 = get_page_by_path(CFS()->get('new-serv-page1')); ?>
It not works because the CFS object isn't inicilized at that moment. If i do like this:
<?php $page1 = get_page_by_path('someslug'); ?>
Code works...
Will be glad to get help..
get('new-serv-page1')); ?>