如何在循环内容之前执行自定义循环?
<?php
remove_action( \'genesis_entry_header\', \'genesis_do_post_title\' );
remove_action( \'genesis_entry_footer\', \'genesis_entry_footer_markup_open\', 5 );
remove_action( \'genesis_entry_footer\', \'genesis_entry_footer_markup_close\', 15 );
add_action(\'genesis_entry_content\', \'gt_custom_loop\');
function gt_custom_loop() {
// this gets executed after the page content, how to make it execute before?
}
genesis();
?>