Category: wordpress
-
Fix Deprecated: Creation of dynamic property Class::$attr is deprecated
<?php class Ifat { function __construct(){ $this->name = “ifat”; echo $this->name; } } new Ifat(); // Deprecated: Creation of dynamic property Ifat::$name is deprecated in patha/tempCodeRunnerFile.php on line 4 class FixedIfat { private $name; function __construct(){ …
-
How to make next and previous in wordpress blog page.
Making a next previous section for blog is very interesting feature it’s tells your reader what content you’re providing next page if user can see the title or the thumbnail of the next blog it brings more trust as reader perspective here is the code sample you can modify the design and code as your…