This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name" : "MyTestProject", | |
"title" : "test", | |
"version" : "1.0.0", | |
"devDependencies": { | |
"grunt": "0.4.1", | |
"grunt-contrib-concat": "0.1.3", | |
"grunt-contrib-cssmin" : "0.6.1", | |
"grunt-contrib-watch" : "0.5.3", | |
"grunt-contrib-uglify" : "0.2.0" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$post_7 = get_post(7, ARRAY_A); | |
$title = $post_7['post_title']; | |
?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$meta_query_args = array( | |
'relation' => 'OR', // Optional, defaults to "AND" | |
array( | |
'key' => '_my_custom_key', | |
'value' => 'Value I am looking for', | |
'compare' => '=' | |
) | |
); | |
$meta_query = new WP_Meta_Query( $meta_query_args ); |
NewerOlder