これは私のエラーです:
Warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, 'my_scripts_method_2' was given in /home/www/domain.com/wp-includes/plugin.php on line 406
これはエラーを与える関数です:
add_action('wp_enqueue_scripts', 'my_scripts_method_2');
function catch_that_image() {
global $post, $posts;
$first_img = '';
ob_start();
ob_end_clean();
$output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches);
$first_img = $matches [1] [0];
if(empty($first_img)){ //Defines a default image
$first_img = "http://domain.com/wp-content/uploads/2013/07/billede.jpg";
}
return $first_img;
}
GD スター評価が有効になっている場合にのみエラーが発生します。また、「my_scripts_method_2 が既に使用されている」ことが問題になる可能性は低いです。名前を何度も変更しましたが、それでもエラーが発生します。