i have template that include many function file. in footer.php file wp_footer() load just a menu. how can find which action ruined wp_footer() function.
Edit1:
I looking for some way to find where action added for wp_footer if it possible.
footer file code:
</div><!-- end wrapper -->
<!-- END SITE -->
<?php wp_footer(); ?>
</body>
</html>
wp_footer()loading everything, which are hooked towp_footer. what there must be? what you mean withruined? any errors?add_action('wp_footer', 'some_functions_names');in all.phpfiles and check all functions, or something likeremove_action('wp_footer', 'some_functions_names'). but it would be fater to disable all plugins and check if the problem caused active theme