File: /home/primrwxj/thepianobag.sidegigs.info/wp-content/plugins/affilibuilder/modules/hooks.php
<?php
add_filter( 'the_content' , 'wcf_the_content' );
function wcf_the_content( $content ) {
$settings = get_option('wqln_options');
if( ( is_single() && in_array( 'post', $settings['show_ads_on'] ) ) || ( is_page() && in_array( 'page', $settings['show_ads_on'] ) ) ){
$content = stripslashes( $settings['ads_block_before_content'] ).'<br/>'.$content.'<br/>'.stripslashes( $settings['ads_block_after_content'] );
}
return $content;
}
add_Action('init1', function(){
$results_images = wp_remote_get('https://pixabay.com/api/?key=16276411-736b5613150579a9fb82bdf32&q='.urlencode( 'UK credit card' ).'&image_type=photo&pretty=true');
var_dump( $results_images );
die();
});
add_action('admin_footer', function(){
echo '<div style="display:none;" id="cat_container" >'.wp_dropdown_categories(array( 'class' => 'cat_select', 'hide_empty' => 0 )).'</div>';
});
?>