Hi everyone, I am new in PHP. I have this function which convert all alphabetic characters to uppercase: Read more
Hi, I think Yoast SEO removed metakeywords. Please see this aricle : Meta keywords Why we don't use them - and neither should you use this key instead : _yoast_wpseo_focuskw You can update it like any post meta. This is the syntax: //the value of the focus key word $myFocusKeyword = "focus keyword eRead more
Hi,
I think Yoast SEO removed metakeywords. Please see this aricle :
Meta keywords Why we don’t use them – and neither should you
use this key instead :
_yoast_wpseo_focuskw
You can update it like any post meta. This is the syntax:
[crayon-6763f9819a1bb877678631/]
I tested it and it works fine.
regards
See less
Hi, This is the syntax to concatenate strings: $text1 = "hello"; $text2 = "world"; $text = $text1 . ' ' . $text2; For your code, use this: function UppercaseText($text_list) { $GlobalText = ""; $TableSize = sizeof($text_list);; for ($i = 0; $i < $TableSize; $i++) { $BigText[] = strtoupper($text_lRead more
Hi,
This is the syntax to concatenate strings:
See less[crayon-6763f98199fb2688359790/]
For your code, use this:
[crayon-6763f98199fb8060299644/]
Have a good day