PHP - Ayuda Error de sintasis wordpress en archive.php

 
Vista:

Ayuda Error de sintasis wordpress en archive.php

Publicado por Jose Ignacio (1 intervención) el 31/01/2014 13:50:35
Hola buenas, enredando para intentar poner el favicon dichoso accedi desde mi wordpress al editor y en el archivo que se llama archive.php en theme header.php añadi una instruccion que borre para poner el favicon y no se que he hecho que ahora me da este error:
Parse error: syntax error, unexpected '<' in /home/bjrapfnz/public_html/wp-content/themes/heatmap-adaptive/inc/theme-header.php on line 10

el codigo es el siguiente:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
/* 
This file is part of HeatMap Theme AdAptive
See license.txt (distributed with this file) for details of
license, contributors, copyright notices, credits and trademarks.
*/
get_header();
 
	// CONTENT HOOK
add_action('heatmapthemead_the_content_hook', 'heatmapthemead_widget_position_blogabove');
add_action('heatmapthemead_the_content_hook', 'heatmapthemead_archive_posts_header');
 
	// PRE ARCHIVE TITLE HOOK
	add_action('heatmapthemead_pre_archive_title_hook', 'heatmapthemead_widget_position_postinline');
	// AFTER ARCHIVE TITLE HOOK
	add_action('heatmapthemead_after_archive_title_hook', 'heatmapthemead_widget_position_postincontent');
	// AFTER ARCHIVE DESCRIPTION HOOK
	add_action('heatmapthemead_after_archive_description_hook', 'heatmapthemead_widget_position_postbelow');
 
add_action('heatmapthemead_the_content_hook', 'heatmapthemead_the_loop');
 
	// THE LOOP HOOK
	add_action('heatmapthemead_the_loop_hook', 'heatmapthemead_blog_posts');
		// BLOG POSTS HOOK
		add_action('heatmapthemead_blog_posts_hook', 'heatmapthemead_blog_posts_header');
		add_action('heatmapthemead_blog_posts_hook', 'heatmapthemead_posted_on');
		add_action('heatmapthemead_blog_posts_hook', 'heatmapthemead_featured_image');
		add_action('heatmapthemead_blog_posts_hook', 'heatmapthemead_the_excerpt');
		add_action('heatmapthemead_blog_posts_hook', 'heatmapthemead_like_buttons');
		add_action('heatmapthemead_blog_posts_hook', 'heatmapthemead_article_meta');
	// THE POST LOOP HOOK	
	add_action('heatmapthemead_the_post_loop_hook', 'heatmapthemead_the_loop_errors');
 
add_action('heatmapthemead_the_content_hook', 'heatmapthemead_content_nav');
add_action('heatmapthemead_the_content_hook', 'heatmapthemead_widget_position_blogbelow');
 
get_sidebar();
get_footer();
 
get_template_part( 'unhook' );
get_template_part( 'unhook-custom' );
get_template_part( 'render' );
?>
alguien me puede ayudar? no tengo ni idea de php.
Muchas gracias de antemano.
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder