ap_delete_qameta( integer $post_id )
Description #
Delete qameta row.
Parameters #
- $post_idinteger (Required) Post ID.
Source #
File: includes/qameta.php
function ap_delete_qameta( $post_id ) { global $wpdb; if ( empty( $post_id ) ) { return false; } return $wpdb->delete( $wpdb->ap_qameta, array( 'post_id' => $post_id ), array( '%d' ) ); // phpcs:ignore WordPress.DB.DirectDatabaseQuery }
Expand full source code Collapse full source code View on GitHub: includes/qameta.php:141
Add your comment