getTotalPosts( )


Developer Preview

This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.

Gets the total amount of published posts on the blog.

The getTotalPosts() function returns a Promise that resolves to the total amount of published posts on your blog's site.

You can use the language option to filter posts for a specified language.

Permissions
Manage Blog
Read Blog
Read Draft Blog Posts
Learn more about app permissions.
Method Declaration
Copy
function getTotalPosts(
  options: GetTotalPostsOptions,
): Promise<GetTotalPostsResponse>;
Method Parameters
optionsGetTotalPostsOptions

Language Options.

Returns
Return Type:Promise<GetTotalPostsResponse>
JavaScript
import { posts } from "@wix/blog"; async function getTotalPosts(options) { const response = await posts.getTotalPosts(options); }
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?