Posts by Humberto Castelo Branco • 176 points
5 posts
-
0
votes1
answer1774
viewsA: How to make sure the Curl post has arrived on the other server?
I will leave a function below where you have some explanations and I believe it will help you with that question. It is not a ready-to-use function (copy, paste and exit using for all cases), since…
-
0
votes2
answers254
viewsA: News just for certain group on wordpress
I will assume that users (customers) when registering/registering on Wordpress, choose the group they will be part of and consequently this will save a new user metadata to the database. To retrieve…
-
0
votes5
answers727
viewsA: Return all CSS classes with Regular Expression
We can parse string character by character to delete classes that are inside comments /* .classe */, is the best way to extract all CSS classes from a string. $string = <<<EOF…
-
3
votes1
answer11594
viewsA: Customizing individual pages in Wordpress
There is not yet this type of editing smarter implemented natively in Wordpress, but I believe that within a short time exists. When you use the customizator to customize colors for example, is…
-
3
votes4
answers4814
viewsA: Get value from external HTML TAG "<link>"
I recommend using the PHP Simple HTML DOM Parser, it is great and very easy to use, I use in various scripts to analyze HTML from other sites. Very good the answer of Bruno Augusto, I just want to…