How to make wireshark filter POST-requests only?

You can use the following filter:

http.request.method == "POST"

If you want to display both methods GET and POST you filter wireshark like this

http.request.method == GET or http.request.method == POST

sadashttp.request.method == “POST”
http.request.method == “POST”