Skip to content

Instantly share code, notes, and snippets.

@bilalmalkoc
Created August 31, 2019 13:41
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/7918c46dd153d4f38cb92a6e0f830d12 to your computer and use it in GitHub Desktop.
Save bilalmalkoc/7918c46dd153d4f38cb92a6e0f830d12 to your computer and use it in GitHub Desktop.
// foreach için örnek
foreach( $items as $item ) {
echo $item[ 'title' ];
echo $item[ 'url' ];
echo $item[ 'description' ];
}
// if else için örnek
if( have_posts() ) {
echo 'Yazı Bulundu!';
} else {
echo 'Yazı Bulunamadı!';
echo 'Tüh :(';
}
// array için örnek
$args = array(
'echo' => false,
'include' => array( 1, 2 )
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment