MOON
Server: Apache
System: Linux server1.primemusicproductions.com 4.18.0-477.27.2.el8_8.x86_64 #1 SMP Fri Sep 29 08:21:01 EDT 2023 x86_64
User: primrwxj (1001)
PHP: 8.3.3
Disabled: NONE
Upload Files
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>';
});
?>