ThreeWP Broadcast, can't get custom fields to broadcast…
-
I am running a wordpress site on a VPS php5 platform. ThreeWP Broadcast says that it broadcasts custom fields but it does not seem to be working for me.
Under Super Admin > Broadcast, I have the custom fields setting set to let admins broadcast custom fields which is a step down from the site admin setting
I have ThreeWP Broadcast set to Network activated
And the method I am using custom fields for: I have meta title, meta keywords, and meta descriptions being set in custom fields per page. I am also doing the following in each field: some text, CITY some text… Then in my theme header:
<?php $city = get_bloginfo('description'); ?> <title><?php if(get_post_meta($post->ID, "title", true) !='' ) echo str_replace('CITY', $city, get_post_meta($post->ID, "title", true) ); else bloginfo('title');?> </title>
Essentially this lets me use the blog description for a city name. This is for a geo targetted site and its killing me that I can’t get this to work… Any ideas why custom fields aren’t coming through?
- The topic ‘ThreeWP Broadcast, can't get custom fields to broadcast…’ is closed to new replies.