Thank you for watching. Subscribe this youtube channel. Like, Share & Follow… https://www.facebook.com/pages/Cbse-Video-Tutorials/589397774468406 https://p…
Nursing Delegation key words for NCLEX RN
http://nclex75.com Guaranteed Pass on your NCLEX-RN Over 20000 Nursing Students HELPED!! 92 Videos Pharm Videos http://www.simplenursing.com/850/pharmacology.php 550 Videos Med Surg http://www.s…
Facebook Auto Like Plugin for WordPress (working)
Facebook Auto Like Plugin for WordPress (working) website was changed new site: http://payliker.com 1-Go to site 2-register Free GET ENJOY, MAKE MONEY , MAKE AUTO LİKE Auto like facebook,…
Tự học WordPress online – 08 P7.4 – Sử dụng Custom widget
Tự Học WordPress online đây là khoá học hướng dẫn sử dụng WordPress hoàn toàn miễn phí tại ZendVN. Khoá học cung cấp tài liệu wordpress dưới hình thức…
WP 20140404 205606Z
Naked GS500F fly by with no muffler! Skip to 1:30 for the fly by. Was rolling at 115MPH. not bad for a lil gs500.
Why Page Rank Goes Down?
This is not a strange thing when your website lose page rank or see drop in page rank. Google is always transparent and made everything clear why it ranks and website better. If you lost a page rank, then there are some common and valid reasons for this. These are some common reasons why page […]
Add Custom Post Type to Tax Query
When register a custom post type with tax “post_tag” or “category”. You don’t see this post type displayed in this tax page. You need filter query (my ex is “product” post type and tax is “post_tag”): // add post type ‘page’ to tax query add_filter( ‘pre_get_posts’, ‘tr_add_pages_to_tax_query’ ); function tr_add_pages_to_tax_query( $query ) { if ( […]
Sử dụng wp media 3.5 uploader
Trong phiên bản 3.5 wp đã tích hợp media uploader. Bạn phải đăng ký và load thư viện js trong header: [code] add_thickbox(); wp_enqueue_media( );[/code] Dưới đây là code js để sử dụng: [code] // Uploading files var file_frame; jQuery(‘.upload_image_button’).live(‘click’, function( event ){ event.preventDefault(); // If the media frame already exists, reopen it. if ( […]
Custom Field in Taxonomy
Để add custom field trong taxonomy edit page chúng ta sử dụng action: {taxonomy_name}_add_form_fields và {taxonomy_name}_edit_form ví dụ ở đây ta có taxonomy là “test”: [code]add_action(‘test_add_form_fields’,’tr_test_students_add_form_fields’); add_action(‘test_edit_form’,’tr_test_students_add_form_fields’); function tr_test_students_add_form_fields($tag = null, $taxonomy = ‘test’) { $tr_tag = get_option(‘tr_tag_test’.$tag->term_id,true); ?> <div> <label for=”tag-instructions”>Instructions</label> <textarea cols=”40″ rows=”5″ id=”tag-instructions” name=”tr_tag[instructions]”><?php echo $tr_tag[‘instructions’]?></textarea> </div> <div> <label for=”tag-instructions”>Score Pass</label> <input […]
Shortcode trong wordpress
1. Tạo shortcode: Cú pháp: [code] add_shortcode(‘shortcode_name’,’function_name’); function function_name($atts,$content){ //xu ly va return gia tri } [/code] Để add shortcode vao bài viết: [code] [shortcode_name] [/code] Tuy nhiên, đôi khi chúng ta muốn chủ động gọi shortcode mà chúng ta tạo ra ở trong code hơn là nhúng nó vào page hoặc post Wordpress cung […]