Check this out
Thursday, 28 June 2012
How to query database on Wordpress
Below is my sample funtion to get the data on wordpress database. ?php /*************************** Function get_readerLinkStatus() Desc : Mencari Status Link wp-omatic pada post yang akan di cari. Jika terdapat post dari wp-omatic --> return 1 Jika merupakan post dari wp-omatic tetapi tidak terdapat link nya --> 0. Jika tidak terdapat post dari wp-omatic --> return 0 ***************************/ function get_readerLinkStatus($postId){ global $wpdb; $query= "SELECT meta_value from $wpdb->postmeta WHERE post_id=" .$postId ." AND meta_key='wpo_sourcepermalink' "; $jmlData = $wpdb->query($wpdb->prepare($query)); if ( $jmlData > 0 ) : // Jika ada wpo_sourcepermalink di dalam postmeta $linkExist = $wpdb->get_col( $wpdb->prepare($query) ); //$row['meta_value']; if ($linkExist <> "") : //jika field wpo_sourcepermalink ada linknya return 1; else : //jika wpo_sourcepermalink null return 0; endif; else : return 0; endif; } ?>
Subscribe to:
Post Comments (Atom)
Popular Posts
-
What I mean as a high quality backlink here is a page within a site that has a high page rank and dofollow . And the easiest way...
-
All FIN messages conform to a defined block structure. Each block of a message contains data of a particular type and is used for a particul...
-
Interupsi I/O Computer Pada synchronous I/O , kendali dikembalikan ke proses pengguna setelah proses I/O selesai dikerjakan. Sedangkan pada...
-
Hari ini saya sedang mengerjakan beberapa project terkait mandatory upgrade SWIFTNet 7 untuk para pengguna SWIFT di Indonesia. Mengisi waktu...
-
Tidak dapat dipungkiri bahwa saat ini pengguna komputer banyak menggunakan Third Party Software . Third Party Software dan Plug-in sering...
No comments:
Post a Comment