• I want to get the main Query in SQL formate before executing. So i can convert the object into Query?

    my code is below.

    add_action('pre_get_posts','wpse50761_alter_query');
    function wpse50761_alter_query($query){
    	if ( !$query->is_main_query() )
    		return;
    
         // Now here $query contains the object
        i want it to convert into SQL formate.
     }
  • The topic ‘Convert Query object into Sql formate’ is closed to new replies.