WP_Importer::count_imported_posts( string $importer_name, string $bid )

Return count of imported permalinks from WordPress database


Description Description


Parameters Parameters

$importer_name

(string) (Required)

$bid

(string) (Required)


Top ↑

Return Return

(int)


Top ↑

Source Source

File: wp-admin/includes/class-wp-importer.php

	public function count_imported_posts( $importer_name, $bid ) {
		global $wpdb;

		$count = 0;

		// Get count of permalinks
		$meta_key = $importer_name . '_' . $bid . '_permalink';
		$sql      = $wpdb->prepare( "SELECT COUNT( post_id ) AS cnt FROM $wpdb->postmeta WHERE meta_key = '%s'", $meta_key );

		$result = $wpdb->get_results( $sql );

		if ( ! empty( $result ) ) {
			$count = intval( $result[0]->cnt );
		}

		// Unset to save memory.
		unset( $results );

		return $count;
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.