No takze nakoniec je to takto.
ini_set('display_errors', 1);
error_reporting(E_ALL);
//zde nahrajeme WordPress
define('WP_USE_THEMES', false); //zakáže nahrávání souboru šablony
require("wp-load.php");
//a ted vytvoríme post
$post = array();
$post['post_title'] = "Test2BUKAKE3";
$post['post_content'] = "Test druhy post";
$post['post_type'] = "post";
$post['post_status'] = 'pending';
$post['post_author'] = 1;
$post['comment_status'] = 'closed';
$post['post_date'] = date('Y-m-d H:i:s',strtotime("now"));
wp_insert_post( $post );
print_r( debug_backtrace() )
Ak som nepridal print_r( debug_backtrace() )
tak to koncilo chybovou hlaskou. Ak je tam aj to debug_backtrace tak to cele krasne zbehne.
Dakujem za radi