# elementor/4.0.0-dev3/modules/home/transformations/create-edit-website-url.php

Elementor Website Builder – more than just a page builder, version 4.0.0-dev3. 19 lines.

- Page: https://pluginprobe.com/plugins/elementor/4.0.0-dev3/code/modules/home/transformations/create-edit-website-url.php
- Raw: https://pluginprobe.com/plugins/elementor/4.0.0-dev3/raw/modules/home/transformations/create-edit-website-url.php
- Modified: 2026-01-20T08:22:36+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/elementor/4.0.0-dev3/code/modules/home/transformations/create-edit-website-url.php#L10-L20`.

```php
<?php
namespace Elementor\Modules\Home\Transformations;

use Elementor\Modules\Home\Transformations\Base\Transformations_Abstract;
use Elementor\Plugin;

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

class Create_Edit_Website_Url extends Transformations_Abstract {

	public function transform( array $home_screen_data ): array {
		$home_screen_data['edit_website_url'] = wp_nonce_url( admin_url( 'admin.php?action=elementor_edit_website_redirect' ), 'elementor_action_edit_website' );

		return $home_screen_data;
	}
}

```
