기본 : 'WordPressPCL' Nuget 패키지 설치
코드 내용
using WordPressPCL;
using WordPressPCL.Models;
namespace WordPressPCLTest
{
public partial class WordPressForm : Form
{
public WordPressForm()
{
InitializeComponent();
}
private async void getPostButton_Click(object sender, EventArgs e)
{
this.Cursor = Cursors.WaitCursor;
WordPressClient client = new WordPressClient("https://wordpress주소.kr/wp-json/");
IEnumerable<Post> postEnumerable = await client.Posts.GetAllAsync();
int i = 1;
foreach (Post post in postEnumerable.Reverse())
{
string title = post.Title.Rendered.Trim();
this.textBox1.Text += $"[{i.ToString("000")}] {title + Environment.NewLine}";
i++;
}
this.Cursor = Cursors.Default;
}
}
}
결과
WordPress API - Post 삭제하기 (0) | 2024.07.07 |
---|---|
WordPress API - Post 쓰기 (0) | 2024.07.07 |
C# ALGLIB - 수치분석 및 데이터 처리를 위한 라이브러리 (0) | 2024.06.11 |
C# 필드 필수 처리 - required modifier (0) | 2024.06.11 |
C# String Interpolation 복수 라인 표현식 (0) | 2024.06.11 |