├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── codeql-analysis.yml │ ├── documentation.yml │ ├── integration-tests.yml │ └── publish-nuget.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── WordPressPCL.Tests.Hosted ├── Basic_Tests.cs ├── Utility │ ├── ApiCredentials.cs │ ├── ClientHelper.cs │ └── HttpHelper_Tests.cs └── WordPressPCL.Tests.Hosted.csproj ├── WordPressPCL.Tests.Selfhosted ├── ApplicationPasswords_Tests.cs ├── Assets │ ├── cat.jpg │ └── img_exif_error.jpg ├── Basic_Tests.cs ├── Categories_Tests.cs ├── CommentsThreaded_Tests.cs ├── Comments_Tests.cs ├── CustomRequests_Tests.cs ├── ExceptionTests.cs ├── Exception_Unexpected_Tests.cs ├── HttpClient_Tests.cs ├── ListPosts_QueryBuilder_Tests.cs ├── Media_Tests.cs ├── MimeTypeHelper_Tests.cs ├── Pages_Tests.cs ├── Plugins_Tests.cs ├── PostRevisions_Tests.cs ├── PostStatuses_Tests.cs ├── PostTypes_Tests.cs ├── Posts_Tests.cs ├── QueryBuilder_Tests.cs ├── Settings_Tests.cs ├── Tag_Tests.cs ├── Taxonomies_Tests.cs ├── Themes_Tests.cs ├── User_Tests.cs ├── Utility │ ├── ApiCredentials.cs │ ├── CapabilitiesJsonConverter_Tests.cs │ ├── ClientHelper.cs │ ├── HttpHelper_Tests.cs │ └── UrlHelper_Tests.cs ├── WordPressPCL.Tests.Selfhosted.csproj ├── jwt.runsettings └── jwtauth.runsettings ├── WordPressPCL.sln ├── WordPressPCL ├── Client │ ├── Auth.cs │ ├── CRUDOperation.cs │ ├── Categories.cs │ ├── Comments.cs │ ├── CustomRequest.cs │ ├── Media.cs │ ├── Pages.cs │ ├── Plugins.cs │ ├── PostRevisions.cs │ ├── PostStatuses.cs │ ├── PostTypes.cs │ ├── Posts.cs │ ├── Settings.cs │ ├── Tags.cs │ ├── Taxonomies.cs │ ├── Themes.cs │ └── Users.cs ├── Images │ └── icon.png ├── Interfaces │ ├── ICountOperation.cs │ ├── ICreateOperation.cs │ ├── IDeleteOperation.cs │ ├── IQueryOperation.cs │ ├── IReadOperation.cs │ └── IUpdateOperation.cs ├── Models │ ├── ApplicationPassword.cs │ ├── AuthMethod.cs │ ├── AvatarURL.cs │ ├── BadRequest.cs │ ├── Base.cs │ ├── Category.cs │ ├── Comment.cs │ ├── CommentThreaded.cs │ ├── Embedded.cs │ ├── Enums.cs │ ├── Exceptions │ │ ├── WPException.cs │ │ └── WPUnexpectedException.cs │ ├── ImageMeta.cs │ ├── JWTData.cs │ ├── JWTPlugin.cs │ ├── JWTResponse.cs │ ├── JWTUser.cs │ ├── Links.cs │ ├── MediaDetails.cs │ ├── MediaItem.cs │ ├── MediaSize.cs │ ├── Page.cs │ ├── Plugin.cs │ ├── Post.cs │ ├── PostRevision.cs │ ├── PostStatus.cs │ ├── PostType.cs │ ├── Settings.cs │ ├── Subclasses.cs │ ├── Tag.cs │ ├── Taxonomy.cs │ ├── Term.cs │ ├── Theme.cs │ └── User.cs ├── Utility │ ├── CategoriesQueryBuilder.cs │ ├── CommentsQueryBuilder.cs │ ├── CustomCapabilitiesJsonConverter.cs │ ├── ExcludeQueryTextAttribute.cs │ ├── HttpHelper.cs │ ├── MediaQueryBuilder.cs │ ├── MimeTypeHelper.cs │ ├── PagesQueryBuilder.cs │ ├── PluginsQueryBuilder.cs │ ├── PostsQueryBuilder.cs │ ├── QueryBuilder.cs │ ├── QueryTextAttribute.cs │ ├── TagsQueryBuilder.cs │ ├── TaxonomiesQueryBuilder.cs │ ├── ThemesQueryBuilder.cs │ ├── ThreadedCommentsHelper.cs │ ├── UrlHelper.cs │ └── UsersQueryBuilder.cs ├── WordPressClient.cs ├── WordPressPCL.csproj └── WordPressPCL.xml ├── dev ├── .env ├── .htaccess ├── docker-compose.yml ├── dockerfile └── install.md ├── docs ├── I version 2.x │ ├── breaking-changes.md │ ├── customization │ │ ├── customHttpClient.md │ │ ├── customJsonSerializationSettings.md │ │ ├── customRequest.md │ │ └── httpResponsePreProcessing.md │ ├── entities │ │ ├── categories.md │ │ ├── comments.md │ │ ├── customPostType.md │ │ ├── media.md │ │ ├── pages.md │ │ ├── posts.md │ │ ├── poststatuses.md │ │ ├── posttypes.md │ │ ├── settings.md │ │ ├── tags.md │ │ ├── taxonomies.md │ │ └── users.md │ └── troubleshooting.md ├── II version 1.x │ ├── customization │ │ ├── customHttpClient.md │ │ ├── customJsonSerializationSettings.md │ │ ├── customRequest.md │ │ └── httpResponsePreProcessing.md │ ├── entities │ │ ├── categories.md │ │ ├── comments.md │ │ ├── customPostType.md │ │ ├── media.md │ │ ├── pages.md │ │ ├── posts.md │ │ ├── poststatuses.md │ │ ├── posttypes.md │ │ ├── settings.md │ │ ├── tags.md │ │ ├── taxonomies.md │ │ └── users.md │ └── troubleshooting.md └── index.md └── mkdocs.yml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/.github/workflows/documentation.yml -------------------------------------------------------------------------------- /.github/workflows/integration-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/.github/workflows/integration-tests.yml -------------------------------------------------------------------------------- /.github/workflows/publish-nuget.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/.github/workflows/publish-nuget.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/README.md -------------------------------------------------------------------------------- /WordPressPCL.Tests.Hosted/Basic_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Hosted/Basic_Tests.cs -------------------------------------------------------------------------------- /WordPressPCL.Tests.Hosted/Utility/ApiCredentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Hosted/Utility/ApiCredentials.cs -------------------------------------------------------------------------------- /WordPressPCL.Tests.Hosted/Utility/ClientHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Hosted/Utility/ClientHelper.cs -------------------------------------------------------------------------------- /WordPressPCL.Tests.Hosted/Utility/HttpHelper_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Hosted/Utility/HttpHelper_Tests.cs -------------------------------------------------------------------------------- /WordPressPCL.Tests.Hosted/WordPressPCL.Tests.Hosted.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Hosted/WordPressPCL.Tests.Hosted.csproj -------------------------------------------------------------------------------- /WordPressPCL.Tests.Selfhosted/ApplicationPasswords_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Selfhosted/ApplicationPasswords_Tests.cs -------------------------------------------------------------------------------- /WordPressPCL.Tests.Selfhosted/Assets/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Selfhosted/Assets/cat.jpg -------------------------------------------------------------------------------- /WordPressPCL.Tests.Selfhosted/Assets/img_exif_error.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Selfhosted/Assets/img_exif_error.jpg -------------------------------------------------------------------------------- /WordPressPCL.Tests.Selfhosted/Basic_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Selfhosted/Basic_Tests.cs -------------------------------------------------------------------------------- /WordPressPCL.Tests.Selfhosted/Categories_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Selfhosted/Categories_Tests.cs -------------------------------------------------------------------------------- /WordPressPCL.Tests.Selfhosted/CommentsThreaded_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Selfhosted/CommentsThreaded_Tests.cs -------------------------------------------------------------------------------- /WordPressPCL.Tests.Selfhosted/Comments_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Selfhosted/Comments_Tests.cs -------------------------------------------------------------------------------- /WordPressPCL.Tests.Selfhosted/CustomRequests_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Selfhosted/CustomRequests_Tests.cs -------------------------------------------------------------------------------- /WordPressPCL.Tests.Selfhosted/ExceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Selfhosted/ExceptionTests.cs -------------------------------------------------------------------------------- /WordPressPCL.Tests.Selfhosted/Exception_Unexpected_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Selfhosted/Exception_Unexpected_Tests.cs -------------------------------------------------------------------------------- /WordPressPCL.Tests.Selfhosted/HttpClient_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Selfhosted/HttpClient_Tests.cs -------------------------------------------------------------------------------- /WordPressPCL.Tests.Selfhosted/ListPosts_QueryBuilder_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Selfhosted/ListPosts_QueryBuilder_Tests.cs -------------------------------------------------------------------------------- /WordPressPCL.Tests.Selfhosted/Media_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Selfhosted/Media_Tests.cs -------------------------------------------------------------------------------- /WordPressPCL.Tests.Selfhosted/MimeTypeHelper_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Selfhosted/MimeTypeHelper_Tests.cs -------------------------------------------------------------------------------- /WordPressPCL.Tests.Selfhosted/Pages_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Selfhosted/Pages_Tests.cs -------------------------------------------------------------------------------- /WordPressPCL.Tests.Selfhosted/Plugins_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Selfhosted/Plugins_Tests.cs -------------------------------------------------------------------------------- /WordPressPCL.Tests.Selfhosted/PostRevisions_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Selfhosted/PostRevisions_Tests.cs -------------------------------------------------------------------------------- /WordPressPCL.Tests.Selfhosted/PostStatuses_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Selfhosted/PostStatuses_Tests.cs -------------------------------------------------------------------------------- /WordPressPCL.Tests.Selfhosted/PostTypes_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Selfhosted/PostTypes_Tests.cs -------------------------------------------------------------------------------- /WordPressPCL.Tests.Selfhosted/Posts_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Selfhosted/Posts_Tests.cs -------------------------------------------------------------------------------- /WordPressPCL.Tests.Selfhosted/QueryBuilder_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Selfhosted/QueryBuilder_Tests.cs -------------------------------------------------------------------------------- /WordPressPCL.Tests.Selfhosted/Settings_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Selfhosted/Settings_Tests.cs -------------------------------------------------------------------------------- /WordPressPCL.Tests.Selfhosted/Tag_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Selfhosted/Tag_Tests.cs -------------------------------------------------------------------------------- /WordPressPCL.Tests.Selfhosted/Taxonomies_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Selfhosted/Taxonomies_Tests.cs -------------------------------------------------------------------------------- /WordPressPCL.Tests.Selfhosted/Themes_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Selfhosted/Themes_Tests.cs -------------------------------------------------------------------------------- /WordPressPCL.Tests.Selfhosted/User_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Selfhosted/User_Tests.cs -------------------------------------------------------------------------------- /WordPressPCL.Tests.Selfhosted/Utility/ApiCredentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Selfhosted/Utility/ApiCredentials.cs -------------------------------------------------------------------------------- /WordPressPCL.Tests.Selfhosted/Utility/CapabilitiesJsonConverter_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Selfhosted/Utility/CapabilitiesJsonConverter_Tests.cs -------------------------------------------------------------------------------- /WordPressPCL.Tests.Selfhosted/Utility/ClientHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Selfhosted/Utility/ClientHelper.cs -------------------------------------------------------------------------------- /WordPressPCL.Tests.Selfhosted/Utility/HttpHelper_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Selfhosted/Utility/HttpHelper_Tests.cs -------------------------------------------------------------------------------- /WordPressPCL.Tests.Selfhosted/Utility/UrlHelper_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Selfhosted/Utility/UrlHelper_Tests.cs -------------------------------------------------------------------------------- /WordPressPCL.Tests.Selfhosted/WordPressPCL.Tests.Selfhosted.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Selfhosted/WordPressPCL.Tests.Selfhosted.csproj -------------------------------------------------------------------------------- /WordPressPCL.Tests.Selfhosted/jwt.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Selfhosted/jwt.runsettings -------------------------------------------------------------------------------- /WordPressPCL.Tests.Selfhosted/jwtauth.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.Tests.Selfhosted/jwtauth.runsettings -------------------------------------------------------------------------------- /WordPressPCL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL.sln -------------------------------------------------------------------------------- /WordPressPCL/Client/Auth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Client/Auth.cs -------------------------------------------------------------------------------- /WordPressPCL/Client/CRUDOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Client/CRUDOperation.cs -------------------------------------------------------------------------------- /WordPressPCL/Client/Categories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Client/Categories.cs -------------------------------------------------------------------------------- /WordPressPCL/Client/Comments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Client/Comments.cs -------------------------------------------------------------------------------- /WordPressPCL/Client/CustomRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Client/CustomRequest.cs -------------------------------------------------------------------------------- /WordPressPCL/Client/Media.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Client/Media.cs -------------------------------------------------------------------------------- /WordPressPCL/Client/Pages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Client/Pages.cs -------------------------------------------------------------------------------- /WordPressPCL/Client/Plugins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Client/Plugins.cs -------------------------------------------------------------------------------- /WordPressPCL/Client/PostRevisions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Client/PostRevisions.cs -------------------------------------------------------------------------------- /WordPressPCL/Client/PostStatuses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Client/PostStatuses.cs -------------------------------------------------------------------------------- /WordPressPCL/Client/PostTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Client/PostTypes.cs -------------------------------------------------------------------------------- /WordPressPCL/Client/Posts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Client/Posts.cs -------------------------------------------------------------------------------- /WordPressPCL/Client/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Client/Settings.cs -------------------------------------------------------------------------------- /WordPressPCL/Client/Tags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Client/Tags.cs -------------------------------------------------------------------------------- /WordPressPCL/Client/Taxonomies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Client/Taxonomies.cs -------------------------------------------------------------------------------- /WordPressPCL/Client/Themes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Client/Themes.cs -------------------------------------------------------------------------------- /WordPressPCL/Client/Users.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Client/Users.cs -------------------------------------------------------------------------------- /WordPressPCL/Images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Images/icon.png -------------------------------------------------------------------------------- /WordPressPCL/Interfaces/ICountOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Interfaces/ICountOperation.cs -------------------------------------------------------------------------------- /WordPressPCL/Interfaces/ICreateOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Interfaces/ICreateOperation.cs -------------------------------------------------------------------------------- /WordPressPCL/Interfaces/IDeleteOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Interfaces/IDeleteOperation.cs -------------------------------------------------------------------------------- /WordPressPCL/Interfaces/IQueryOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Interfaces/IQueryOperation.cs -------------------------------------------------------------------------------- /WordPressPCL/Interfaces/IReadOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Interfaces/IReadOperation.cs -------------------------------------------------------------------------------- /WordPressPCL/Interfaces/IUpdateOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Interfaces/IUpdateOperation.cs -------------------------------------------------------------------------------- /WordPressPCL/Models/ApplicationPassword.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Models/ApplicationPassword.cs -------------------------------------------------------------------------------- /WordPressPCL/Models/AuthMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Models/AuthMethod.cs -------------------------------------------------------------------------------- /WordPressPCL/Models/AvatarURL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Models/AvatarURL.cs -------------------------------------------------------------------------------- /WordPressPCL/Models/BadRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Models/BadRequest.cs -------------------------------------------------------------------------------- /WordPressPCL/Models/Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Models/Base.cs -------------------------------------------------------------------------------- /WordPressPCL/Models/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Models/Category.cs -------------------------------------------------------------------------------- /WordPressPCL/Models/Comment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Models/Comment.cs -------------------------------------------------------------------------------- /WordPressPCL/Models/CommentThreaded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Models/CommentThreaded.cs -------------------------------------------------------------------------------- /WordPressPCL/Models/Embedded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Models/Embedded.cs -------------------------------------------------------------------------------- /WordPressPCL/Models/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Models/Enums.cs -------------------------------------------------------------------------------- /WordPressPCL/Models/Exceptions/WPException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Models/Exceptions/WPException.cs -------------------------------------------------------------------------------- /WordPressPCL/Models/Exceptions/WPUnexpectedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Models/Exceptions/WPUnexpectedException.cs -------------------------------------------------------------------------------- /WordPressPCL/Models/ImageMeta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Models/ImageMeta.cs -------------------------------------------------------------------------------- /WordPressPCL/Models/JWTData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Models/JWTData.cs -------------------------------------------------------------------------------- /WordPressPCL/Models/JWTPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Models/JWTPlugin.cs -------------------------------------------------------------------------------- /WordPressPCL/Models/JWTResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Models/JWTResponse.cs -------------------------------------------------------------------------------- /WordPressPCL/Models/JWTUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Models/JWTUser.cs -------------------------------------------------------------------------------- /WordPressPCL/Models/Links.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Models/Links.cs -------------------------------------------------------------------------------- /WordPressPCL/Models/MediaDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Models/MediaDetails.cs -------------------------------------------------------------------------------- /WordPressPCL/Models/MediaItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Models/MediaItem.cs -------------------------------------------------------------------------------- /WordPressPCL/Models/MediaSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Models/MediaSize.cs -------------------------------------------------------------------------------- /WordPressPCL/Models/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Models/Page.cs -------------------------------------------------------------------------------- /WordPressPCL/Models/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Models/Plugin.cs -------------------------------------------------------------------------------- /WordPressPCL/Models/Post.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Models/Post.cs -------------------------------------------------------------------------------- /WordPressPCL/Models/PostRevision.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Models/PostRevision.cs -------------------------------------------------------------------------------- /WordPressPCL/Models/PostStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Models/PostStatus.cs -------------------------------------------------------------------------------- /WordPressPCL/Models/PostType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Models/PostType.cs -------------------------------------------------------------------------------- /WordPressPCL/Models/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Models/Settings.cs -------------------------------------------------------------------------------- /WordPressPCL/Models/Subclasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Models/Subclasses.cs -------------------------------------------------------------------------------- /WordPressPCL/Models/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Models/Tag.cs -------------------------------------------------------------------------------- /WordPressPCL/Models/Taxonomy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Models/Taxonomy.cs -------------------------------------------------------------------------------- /WordPressPCL/Models/Term.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Models/Term.cs -------------------------------------------------------------------------------- /WordPressPCL/Models/Theme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Models/Theme.cs -------------------------------------------------------------------------------- /WordPressPCL/Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Models/User.cs -------------------------------------------------------------------------------- /WordPressPCL/Utility/CategoriesQueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Utility/CategoriesQueryBuilder.cs -------------------------------------------------------------------------------- /WordPressPCL/Utility/CommentsQueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Utility/CommentsQueryBuilder.cs -------------------------------------------------------------------------------- /WordPressPCL/Utility/CustomCapabilitiesJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Utility/CustomCapabilitiesJsonConverter.cs -------------------------------------------------------------------------------- /WordPressPCL/Utility/ExcludeQueryTextAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Utility/ExcludeQueryTextAttribute.cs -------------------------------------------------------------------------------- /WordPressPCL/Utility/HttpHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Utility/HttpHelper.cs -------------------------------------------------------------------------------- /WordPressPCL/Utility/MediaQueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Utility/MediaQueryBuilder.cs -------------------------------------------------------------------------------- /WordPressPCL/Utility/MimeTypeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Utility/MimeTypeHelper.cs -------------------------------------------------------------------------------- /WordPressPCL/Utility/PagesQueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Utility/PagesQueryBuilder.cs -------------------------------------------------------------------------------- /WordPressPCL/Utility/PluginsQueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Utility/PluginsQueryBuilder.cs -------------------------------------------------------------------------------- /WordPressPCL/Utility/PostsQueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Utility/PostsQueryBuilder.cs -------------------------------------------------------------------------------- /WordPressPCL/Utility/QueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Utility/QueryBuilder.cs -------------------------------------------------------------------------------- /WordPressPCL/Utility/QueryTextAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Utility/QueryTextAttribute.cs -------------------------------------------------------------------------------- /WordPressPCL/Utility/TagsQueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Utility/TagsQueryBuilder.cs -------------------------------------------------------------------------------- /WordPressPCL/Utility/TaxonomiesQueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Utility/TaxonomiesQueryBuilder.cs -------------------------------------------------------------------------------- /WordPressPCL/Utility/ThemesQueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Utility/ThemesQueryBuilder.cs -------------------------------------------------------------------------------- /WordPressPCL/Utility/ThreadedCommentsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Utility/ThreadedCommentsHelper.cs -------------------------------------------------------------------------------- /WordPressPCL/Utility/UrlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Utility/UrlHelper.cs -------------------------------------------------------------------------------- /WordPressPCL/Utility/UsersQueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/Utility/UsersQueryBuilder.cs -------------------------------------------------------------------------------- /WordPressPCL/WordPressClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/WordPressClient.cs -------------------------------------------------------------------------------- /WordPressPCL/WordPressPCL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/WordPressPCL.csproj -------------------------------------------------------------------------------- /WordPressPCL/WordPressPCL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/WordPressPCL/WordPressPCL.xml -------------------------------------------------------------------------------- /dev/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/dev/.env -------------------------------------------------------------------------------- /dev/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/dev/.htaccess -------------------------------------------------------------------------------- /dev/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/dev/docker-compose.yml -------------------------------------------------------------------------------- /dev/dockerfile: -------------------------------------------------------------------------------- 1 | FROM wordpress:latest 2 | 3 | COPY ./.htaccess /var/www/html/ 4 | -------------------------------------------------------------------------------- /dev/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/dev/install.md -------------------------------------------------------------------------------- /docs/I version 2.x/breaking-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/I version 2.x/breaking-changes.md -------------------------------------------------------------------------------- /docs/I version 2.x/customization/customHttpClient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/I version 2.x/customization/customHttpClient.md -------------------------------------------------------------------------------- /docs/I version 2.x/customization/customJsonSerializationSettings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/I version 2.x/customization/customJsonSerializationSettings.md -------------------------------------------------------------------------------- /docs/I version 2.x/customization/customRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/I version 2.x/customization/customRequest.md -------------------------------------------------------------------------------- /docs/I version 2.x/customization/httpResponsePreProcessing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/I version 2.x/customization/httpResponsePreProcessing.md -------------------------------------------------------------------------------- /docs/I version 2.x/entities/categories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/I version 2.x/entities/categories.md -------------------------------------------------------------------------------- /docs/I version 2.x/entities/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/I version 2.x/entities/comments.md -------------------------------------------------------------------------------- /docs/I version 2.x/entities/customPostType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/I version 2.x/entities/customPostType.md -------------------------------------------------------------------------------- /docs/I version 2.x/entities/media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/I version 2.x/entities/media.md -------------------------------------------------------------------------------- /docs/I version 2.x/entities/pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/I version 2.x/entities/pages.md -------------------------------------------------------------------------------- /docs/I version 2.x/entities/posts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/I version 2.x/entities/posts.md -------------------------------------------------------------------------------- /docs/I version 2.x/entities/poststatuses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/I version 2.x/entities/poststatuses.md -------------------------------------------------------------------------------- /docs/I version 2.x/entities/posttypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/I version 2.x/entities/posttypes.md -------------------------------------------------------------------------------- /docs/I version 2.x/entities/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/I version 2.x/entities/settings.md -------------------------------------------------------------------------------- /docs/I version 2.x/entities/tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/I version 2.x/entities/tags.md -------------------------------------------------------------------------------- /docs/I version 2.x/entities/taxonomies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/I version 2.x/entities/taxonomies.md -------------------------------------------------------------------------------- /docs/I version 2.x/entities/users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/I version 2.x/entities/users.md -------------------------------------------------------------------------------- /docs/I version 2.x/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/I version 2.x/troubleshooting.md -------------------------------------------------------------------------------- /docs/II version 1.x/customization/customHttpClient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/II version 1.x/customization/customHttpClient.md -------------------------------------------------------------------------------- /docs/II version 1.x/customization/customJsonSerializationSettings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/II version 1.x/customization/customJsonSerializationSettings.md -------------------------------------------------------------------------------- /docs/II version 1.x/customization/customRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/II version 1.x/customization/customRequest.md -------------------------------------------------------------------------------- /docs/II version 1.x/customization/httpResponsePreProcessing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/II version 1.x/customization/httpResponsePreProcessing.md -------------------------------------------------------------------------------- /docs/II version 1.x/entities/categories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/II version 1.x/entities/categories.md -------------------------------------------------------------------------------- /docs/II version 1.x/entities/comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/II version 1.x/entities/comments.md -------------------------------------------------------------------------------- /docs/II version 1.x/entities/customPostType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/II version 1.x/entities/customPostType.md -------------------------------------------------------------------------------- /docs/II version 1.x/entities/media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/II version 1.x/entities/media.md -------------------------------------------------------------------------------- /docs/II version 1.x/entities/pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/II version 1.x/entities/pages.md -------------------------------------------------------------------------------- /docs/II version 1.x/entities/posts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/II version 1.x/entities/posts.md -------------------------------------------------------------------------------- /docs/II version 1.x/entities/poststatuses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/II version 1.x/entities/poststatuses.md -------------------------------------------------------------------------------- /docs/II version 1.x/entities/posttypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/II version 1.x/entities/posttypes.md -------------------------------------------------------------------------------- /docs/II version 1.x/entities/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/II version 1.x/entities/settings.md -------------------------------------------------------------------------------- /docs/II version 1.x/entities/tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/II version 1.x/entities/tags.md -------------------------------------------------------------------------------- /docs/II version 1.x/entities/taxonomies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/II version 1.x/entities/taxonomies.md -------------------------------------------------------------------------------- /docs/II version 1.x/entities/users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/II version 1.x/entities/users.md -------------------------------------------------------------------------------- /docs/II version 1.x/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/II version 1.x/troubleshooting.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/docs/index.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wp-net/WordPressPCL/HEAD/mkdocs.yml --------------------------------------------------------------------------------