কীভাবে ডেটা পরিদর্শন করবেন:
আপনি বর্তমান অনুরোধ / wp_query থেকে কী ব্যবহার করতে পারেন তার অন্তর্দৃষ্টি দেখার জন্য এটি ব্যবহার করুন।
function inspect_wp_query()
{
echo '<pre>';
print_r($GLOBALS['wp_query'])
echo '</pre>';
}
// If you're looking at other variables you might need to use different hooks
// this can sometimes be a little tricky.
// Take a look at the Action Reference: http://codex.wordpress.org/Plugin_API/Action_Reference
add_action( 'shutdown', 'inspect_wp_query', 999 ); // Query on public facing pages
add_action( 'admin_footer', 'inspect_wp_query', 999 ); // Query in admin UI
BTW:
// this:
global $wp_query;
$wp_query;
// is the same as
$wp_query;
// and as this:
$GLOBALS['wp_query'];
// You can do this with each other global var too, like $post, etc.
কীভাবে আসলে ডেটা পাবেন:
// Example (not the best one)
(Object) WP_Query -> post (stdClass) -> postdata (Array)
// How to get the data:
// Save object into var
$my_data = new WP_Query; // on a new object
// or on the global available object from the current request
$my_data = $GLOBALS['wp_query'];
// get object/stdClass "post"
$my_post_data = $my_data->post;
// get Array
$my_post_data = $my_data['post'];
উদাহরণগুলি
সমস্ত সাইডবারের নাম তালিকাভুক্ত করে?
(এর ভিতরে থাকা সমস্ত সাইডবারগুলির সাথে একটি ড্রপ ডাউন / নির্বাচন করুন অবজেক্ট
global $wp_registered_sidebars
)