Hi, I have wordpress 2.9.2
I have implemented the code just like you say in my template function.php, and created my template "custom-feed.php" and uploaded both file in my theme folder. But I keep getting this error:
Warning: require_once(/home/magawork/public_html/criaturas/wp-content/themes/Infinitycustom-feed.php) [function.require-once]: failed to open stream: No such file or directory in /home/magawork/public_html/criaturas/wp-includes/theme.php on line 996
In lines 990 to 997 of this file "../wp-includes/theme.php" I have this code:
function load_template($_template_file) {
global $posts, $post, $wp_did_header, $wp_did_template_redirect, $wp_query, $wp_rewrite, $wpdb, $wp_version, $wp, $id, $comment, $user_ID;
if ( is_array($wp_query->query_vars) )
extract($wp_query->query_vars, EXTR_SKIP);
require_once($_template_file);
}
Can anyone help me with this error? I am not a php programmer so I have no idea what this means.