Is the index.php loop found in the content-extensions.php file? If so why is it when i make changes to the file and upload to the my child theme the changes are not seen? How do i make changes to index.php loop?
ThemeShaper Forums » Thematic
[closed]
regarding the index.php loop
(3 posts)-
Posted 3 years ago #
-
Hi hally-
Try this:
function remove_thematic_index_loop() { remove_action ('thematic_indexloop','thematic_index_loop'); } add_action('init','remove_thematic_index_loop'); function my_index_loop() { // your loop could go below here instaed of this test message echo "it worked!! I replaced the loop with this content"; } add_action('thematic_indexloop', 'my_index_loop');If the test message does not replace the loop on your site check and see that you have your child theme activated in the wpadmin>appearance>themes
-Gene
Posted 3 years ago # -
@Gene,
Thank you. This thread has legs.
Posted 3 years ago #
Topic Closed
This topic has been closed to new replies.