Your PHP is missing functionality required by BlogGlue, please install CURL or Allow URL fOpen.

'; } else if (is_plugin_active($arkayne_plugin) && get_option('arkayne_token') == '') { echo '

The BlogGlue Related Community Plugin must be configured. Please fill out the form below.

'; } else if (get_option('arkayne_active', 0) == 0) { $arkayne_posts = get_posts('numberposts=100'); if ( count($arkayne_posts) > 0) { foreach($arkayne_posts as $post) { arkayne_link($post->ID, 'post'); } echo '

The BlogGlue plugin is active, and evaluating your posts, this message will disappear once your links are ready.

'; } else { echo '

The BlogGlue plugin is active, however you currently do not have any content to evaluate.

'; } } } function arkayne_wordpress_settings() { global $arkayne_server; ?>
/>Optional Full, not excerpt, posts must be enabled for this to work.', 'wpqc'); ?>
/>Optional
/>Optional
/>Optional
Optional 3600 ) seconds. Leave blank, this is not recommended, to never cache. Links will update no sooner than the cache value after you make changes to your partners, titles, or account prefernces.', 'wpqc'); ?>
Required This works for all categories as well by default.', 'wpqc') ?>
/>Optional This option is not recommended. You must enter <?php echo get_blogglue_content(); ?> in your template.', 'wpqc'); ?>
cat_name . ' Token:', 'wpqc') ?> Optional contact BlogGlue directly.', 'wpqc'); ?>

 

Click Here to visit your online BlogGlue Account and manage your community partenrs.

Setup BlogGlue

Enter the token from the installation page after signup in the field below...

Paste Token Here:
Settings'; array_unshift($links, $settings_link); return $links; } // Secure the process of updating the plugin if (is_admin()) { add_filter("plugin_action_links_" . $arkayne_plugin, 'arkayne_settings_link' ); // Catch save event on the admin page if ('arkayne_process' == $_POST['arkayne_stage']) { update_option('arkayne_token', $_POST['arkayne_token']); update_option('arkayne_secure', $_POST['arkayne_secure']); update_option('arkayne_show_list', $_POST['arkayne_show_list']); update_option('arkayne_show_page', $_POST['arkayne_show_page']); update_option('arkayne_show_seo', $_POST['arkayne_show_seo']); update_option('arkayne_cache_seconds', $_POST['arkayne_cache_seconds']); update_option('arkayne_custom_position', $_POST['arkayne_custom_position']); $categories = get_categories('child_of=0'); foreach ($categories as $cat) { update_option('arkayne_token_'.$cat->term_id, $_POST['arkayne_token_'.$cat->term_id]); } } // Do actions for admin // add_action('admin_notices', 'arkayne_notices') // Notices Show only on admin page (called from there) add_action('admin_menu', 'arkayne_admin'); add_action('admin_menu', 'arkayne_settings'); } ?>