芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/cepali.edu.mx/wp-content/plugins/tp-education/tp-metabox/class-tp-like-metabox.php
admin_url( 'admin-ajax.php' ) ) ); wp_enqueue_script( 'jquery' ); wp_enqueue_script( 'tp_education_script' ); } public function tp_education_custom_like( $post_id ) { /** * Meta box layout */ $nonce = wp_create_nonce( 'tp_education_nonce' ); $likes = get_post_meta( $post_id, "likes", true); $likes = ( $likes == null ) ? 0 : $likes; $link = admin_url( 'admin-ajax.php?action=tp_education_like&post_id=' . absint( $post_id ) ); if ( is_single() ) { $output = '
' . absint( $likes ) . '
'; } else { $output = '
' . absint( $likes ) . '
'; } return $output; } } new TP_Education_Like_Metabox();