Skip to content

Instantly share code, notes, and snippets.

@bilalmalkoc
Created August 31, 2019 13:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bilalmalkoc/45291277fdd76591ea02a281930c7dde to your computer and use it in GitHub Desktop.
Save bilalmalkoc/45291277fdd76591ea02a281930c7dde to your computer and use it in GitHub Desktop.
// Tek ögeli dizi için tek satır kullanılmalı.
$query = new WP_Query( array( 'ID' => 123 ) );
// Birden fazla ögeli dizilerde $args gibi değişkene atanarak
// her bir öge için ayrı satır oluşturulmalı.
$args = array(
'post_type' => 'page',
'post_author' => 123,
'post_status' => 'publish',
);
$query = new WP_Query( $args );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment