Server IP : 192.158.238.246 / Your IP : 3.148.235.247 Web Server : LiteSpeed System : Linux uniform.iwebfusion.net 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64 User : jenniferflocom ( 1321) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/7779/task/7779/cwd/plugins/give/src/FormMigration/Actions/ |
Upload File : |
<?php namespace Give\FormMigration\Actions; class TransferFormUrl { protected $sourceId; public function __construct($sourceId) { $this->sourceId = $sourceId; } public static function from($sourceId): self { return new TransferFormUrl($sourceId); } public function to($destinationId): void { $this->__invoke($destinationId); } public function __invoke($destinationId) { $postName = get_post($this->sourceId)->post_name; wp_update_post(['ID' => $this->sourceId, 'post_name' => $postName . '-v2']); wp_update_post(['ID' => $destinationId, 'post_name' => $postName]); } }