/handbook/aem-to-wordpress-migration/frontend-backend-content/
What We Do
Digital Platform MigrationsKey SolutionsManaged ServicesStaffing SolutionsIndustriesProducts
Discovery
Strategic consultancy & project roadmap
Growth Services
On demand development & consultation
Site Maintenance
Annual maintenance. Done for you
QE Services
Testing across SDLC for assured quality
Hosting Migration
Move to a performant hosting with zero downtime
WooCommerce
Enterprise commerce delivered without lock-in
AI
Unlock real use cases and integrations
All Services
A suite of services for any need
Technology STACK
eCommerce
Scale your e-commerce with WooCommerce, integrations, and custom extensions for growth.
EasyEngine
Server management tool that makes using WordPress on Nginx easy.
Web Auditor
Performance Audit & Insights for your Website.
rtMedia
A complete media management plugin for WordPress.
Resources

About Us

CLEAR
Resources
AEM to WordPress migration guide
The migration process
Frontend, backend & content migration
Topics
On this page
Migrating the frontend: Getting started with theme development
Base theme creation
Templates
Content editor tools
Custom post types
Gutenberg reusable blocks (for AEM Experience Fragments)
Migrating content (the actual content and media)
Moving pages and posts
Migrating digital assets from AEM DAM
Mapping URL structures to support the content import
Migrating the backend (functionalities, features, integrations, and more)
Replicating custom API interactions
Bringing over multisite setup and permissions
Replicating AEM’s user roles and permissions management on WordPress
Recreating AEM-like personalizations on WordPress
Migrating AEM’s editorial management capabilities to WordPress
Migrating AEM Forms to WordPress
Migrating analytics from AEM to WordPress
Recreating AEM’s marketing automation on WordPress
Migrating AEM tags and taxonomies to WordPress
Recreating AEM’s caching and performance optimization features on WordPress
Rebuilding AEM’s search functionality on WordPress
Last updated on May 25, 2026
Migrating AEM to WordPress (the frontend, content, and backend)
We’ll start by migrating the frontend.
Migrating the frontend: Getting started with theme development
When migrating your AEM frontend to WordPress, you start by working your theme. You’d recall how we decided to use a starter theme locally for this purpose during pre-migration stage. You’ll build upon this basic theme basically.

Base theme creation
WordPress themes are typically PHP-based and represent the visual layer of your site. To match your AEM site’s existing design, start by creating a custom theme in WordPress. A typical theme structure includes:
- style.css – Defines the core styling for your theme.
- index.php – Serves as the fallback template for displaying content.
This allows you to create a templating environment similar to AEM, offering a cleaner separation of logic and markup, making it easier to maintain and extend.
Templates
AEM uses editable templates (cq:Template) to define page structures, whereas WordPress uses template files to control how different types of content are displayed. For example, you can create:
- single.php – Used to display individual blog posts.
- page-{slug}.php – Custom templates for specific pages, allowing unique layouts per page type.
WordPress offers extensive flexibility with template files, enabling you to match the structure and presentation logic of AEM templates in a way that is easily manageable.
Content editor tools
Gutenberg blocks vs. AEM components
AEM components, like Hero Banners or Callout Blocks, can be converted into Gutenberg Blocks in WordPress. This conversion allows editors to build pages visually similarly, maintaining familiarity.
The Gutenberg Block Editor in WordPress uses JavaScript and React, which allows for the creation of custom blocks that mirror AEM components’ functionality.
Custom post types
AEM often features custom content types, such as “Location” or “Service”. These should be replicated as Custom Post Types (CPTs) in WordPress. This ensures that specific content types remain distinct from standard Pages and Posts, providing better organization and customizability.
To create a CPT in WordPress, use the register_post_type() function.
For instance
function create_custom_post_types() {
register_post_type('location', [
'label' => 'Location',
'public' => true,
'supports' => ['title', 'editor', 'custom-fields'],
'menu_icon' => 'dashicons-location-alt',
]);
}
add_action('init', 'create_custom_post_types');
This code snippet creates a new post type called Location, which can have its own set of fields, taxonomies, and templates, similar to AEM’s custom content types.
Gutenberg reusable blocks (for AEM Experience Fragments)
Experience Fragments in AEM allow content reuse across pages and channels. To replicate this in WordPress, you can use Gutenberg Reusable Blocks.
Converting Experience FragmentsExperience Fragments can be exported as HTML and JSON and we can use the WordPress REST API to automate the creation of these reusable blocks.
wp.apiFetch({
path: '/wp/v2/blocks',
method: 'POST',
data: {
title: 'Reusable Block Title',
content: 'HTML Content Here</p>',
type: 'wp_block',
},});
This allows you to recreate the reusable content elements that editors can use across different pages, maintaining the flexibility and consistency offered by AEM’s Experience Fragments.
While you’ve begun working on the frontend migration, you can start working on content migration in parallel.
Migrating content (the actual content and media)
There are three parts to migrating your AEM content to WordPress. First, there’s your actual content (posts and pages). Then you’ve your media files. And the final aspect of migrating content from AEM to WordPress is mapping AEM URLs for the different content and media assets. Let’s look at each in detail.

Moving pages and posts
In AEM, pages are represented using the cq:Page type, while in WordPress, we categorize content into Pages and Posts. The goal is to map each AEM page to its WordPress equivalent accurately. The mapping process must ensure consistency in the structure and presentation of your content to provide a seamless user experience.
To programmatically create these pages and posts in WordPress, we can utilize the WordPress REST API or WP-CLI commands.
For example:
wp post create --post_type=page --post_title="Home"
--post_content="Content goes here" --post_status="publish"
This will allow for efficient migration without manual recreation of each page or post, which is particularly useful when dealing with large-scale sites.
Migrating metadata
When migrating content, also use an SEO plugin, such as Yoast SEO or All in One SEO, to set up title tags, meta descriptions, and focus keywords for each post or page, ensuring that these match what was implemented in AEM. This will help maintain search engine rankings during the transition.
Migrating digital assets from AEM DAM
AEM’s Digital Asset Management (DAM) system manages an AEM instance’s images, videos, documents, and other media assets. Migrating these assets to WordPress involves several key steps:
Asset export from DAM
Use the AEM Content Transfer Tool or export directly from the AEM interface in bulk. It’s important to export with all metadata attached, as this helps retain asset context during the migration.
For assets in AEM DAM, leverage /content/dam URLs with .model.json extensions to extract metadata in a structured JSON format.
Import into the WordPress media library
After exporting assets from AEM’s Digital Asset Management (DAM), the next step is to import them into the WordPress Media Library. This process ensures that all your images, videos, and other media are available for use in your WordPress environment. Here’s how you can manage this efficiently, especially when dealing with a large volume of assets.
Prepare assets for import
Before importing, ensure that:
- All assets exported from AEM are stored in a local directory or accessible through a URL.
- Metadata from AEM (e.g., titles, descriptions, alt text) is structured in a compatible format, such as JSON or CSV, so it can be mapped to WordPress fields.
- Files are named and organized consistently to make the import process smooth.
(You may have actually already taken care of these in the data cleanup step we saw in pre-migration stage.)
Using WP-CLI for bulk import
For large-scale imports, the WordPress Command Line Interface (WP-CLI) is a powerful tool. The wp media import command can be used to upload assets directly into the Media Library.
Here’s an example command:
wp media import /path/to/your/assets/* --preserve-filetime
Handling asset URLs and renditions
Migrating assets from AEM to WordPress involves two key aspects: ensuring the URLs are updated correctly and replicating AEM’s image renditions. Proper handling of these elements ensures that your media assets remain accessible and display appropriately across your new site.
Updating asset URLs
AEM stores assets using paths like /content/dam/, which won’t align with WordPress’s structure, typically/wp-content/uploads/. To prevent broken links, you’ll need to replace old URLs in the WordPress database. This can be automated using WP-CLI:
wp search-replace 'https://ancillary-proxy.atarimworker.io?url=https%3A%2F%2Faem-site.com%2Fcontent%2Fdam%2F%26%2339; 'https://ancillary-proxy.atarimworker.io?url=https%3A%2F%2Fwordpress-site.com%2Fwp-content%2Fuploads%2F%26%2339; --skip-columns=guid
After the replacement, test your site thoroughly to ensure all images and media files load correctly. Tools like browser developer consoles can help identify any lingering broken links.
Managing image renditions
AEM allows multiple renditions of assets (e.g., thumbnails, high-resolution images, etc.) for different use cases. WordPress also offers a responsive image system that automatically creates multiple sizes (e.g., thumbnail, medium, large) for each upload. If your AEM workflow relied on unique renditions, you can define custom sizes in WordPress by adding this to your theme’s
functions.php:
add_image_size('custom-size', 800, 600, true);
For existing uploads, tools like Regenerate Thumbnails can generate missing sizes to match your custom definitions.
Mapping URL structures to support the content import
AEM and WordPress URL structures can differ significantly, which can impact your SEO if not managed carefully. In WordPress, ensure that Permalink Settings are configured to reflect your previous AEM URL structure. This will help maintain consistency in URLs, which is crucial for both search engines and user experience.
To replicate AEM’s URL structure in WordPress:
Configure WordPress’s permalink settings
In WordPress, configure Permalink Settings to reflect the original AEM URLs wherever possible. This helps ensure that users and search engines continue to recognize and navigate the site as they did before.
301 redirects
Implement 301 redirects using a redirection plugin or server-level configurations to point any changed URLs to the new correct paths. This helps avoid broken links and retains SEO authority from old URLs.
(We’ve already discussed handling media links when migrating media files in the above section.)
Migrating the backend (functionalities, features, integrations, and more)
Migrating the backend is about ensuring every feature, functionality, and integration works seamlessly in the new environment. From custom workflows to third-party solutions, a successful backend migration preserves business continuity. Here’s how to approach backend migration. Let’s start with APIs.
Replicating custom API interactions
If your AEM setup interacts with custom APIs, it’s important to bring that capability over to WordPress. To do so you can use the WP_HTTP API.
WP_HTTP API
Use the WP_HTTP API to handle API requests. It allows you to seamlessly make GET, POST, and other requests to fetch or send data. This will help in replicating the data fetch functionality from AEM to WordPress.
For instance, if you need to pull data from an external service and display it, you can use a shortcode like:
function fetch_external_data_shortcode() {
$response = wp_remote_get('https://ancillary-proxy.atarimworker.io?url=https%3A%2F%2Fapi.example.com%2Fdata%26%2339;);
if (is_wp_error($response)) {
return 'Error fetching data';
}
$data = wp_remote_retrieve_body($response);
return '' . esc_html($data) . '</div>';
}
add_shortcode('external_data', 'fetch_external_data_shortcode');
WordPress also supports Custom REST API Endpoints, which can be used to create your own API routes for interacting with your data programmatically. This can be especially powerful when combined with caching techniques like using the transient API to store API responses, reducing load and improving performance.
Bringing over multisite setup and permissions
If your AEM setup includes multiple sites (like regional variations or campaign-specific microsites), WordPress’s Multisite functionality will allow you to replicate that structure:
To enable multisite in WordPress, start by modifying your wp-config.php
define ('WP_ALLOW_MULTISITE', true);
This will allow you to create a multisite network using subdomains (e.g., region1.example.com) or subdirectories (e.g., example.com/region1). This setup allows for efficient content management, similar to AEM’s multi-instance capabilities while centralizing administration and resources.
Replicating AEM’s user roles and permissions management on WordPress
AEM’s user groups and permissions allow for detailed control over content management. In contrast, WordPress provides default roles like Administrator, Editor, Author, Contributor, and Subscriber, but you can extend these roles to match AEM’s permissions:
Using plugins like the User Role Editor plugin
Use the User Role Editor plugin to customize roles and permissions within WordPress. You can replicate complex AEM permission setups by creating roles such as “Regional Editor” or “Campaign Manager” that mirror the capabilities of AEM user groups.
Custom coding
You can also define custom capabilities for specific tasks like managing assets or editing only certain content types. This ensures content management is as secure and structured as it was in AEM, with editors restricted or empowered based on their roles.
Recreating AEM-like personalizations on WordPress
WordPress by itself allows you to present personalized content to users using default features, such as managing logged-in vs. logged-out content visibility. You can leverage built-in user roles and the ability to create pages and posts restricted to specific users or groups.
User tracking for custom personalization
To create a more tailored experience, user tracking and meta-data management can be implemented. For example, WordPress hooks like wp_login can track logged-in user behavior and then use this information to modify the user experience:
**Example:**Assume you want to show returning users a different homepage. Use wp_login to update user meta information and set a cookie. This can be read by a custom PHP function to show specific content based on whether the user is a first-time visitor or returning.
add_action('wp_login', 'track_user_login', 10, 2);
function track_user_login($user_login, $user) {
update_user_meta($user->ID, 'last_login_time', current_time('mysql'));
}
function display_personalized_message() {
if (is_user_logged_in() && get_user_meta(get_current_user_id(), 'last_login_time', true)) {
echo 'Welcome back! Here are some updates since your last visit.</p>';
} else {
echo 'Welcome! Let’s explore the latest content.</p>';
}
}
add_action('wp_footer', 'display_personalized_message');
Migrating AEM’s editorial management capabilities to WordPress
AEM workflows ensure that content goes through review and approval processes before it gets published. By default, WordPress includes basic publishing workflows where you have roles such as Author, Contributor, Editor, and Administrator. Authors and contributors can create content that needs to be approved by editors before publishing, which offers some built-in control over content flow.

Extending WordPress’s default ediotirla features
For more advanced workflows akin to what AEM provided, you can tap some WordPress plugins.
Using plugins like PublishPress or Edit Flow
To add custom editorial workflows and statuses, PublishPress or Edit Flow can be used. These plugins enable you to create custom content statuses beyond the default “Draft” and “Published”. You could add statuses such as “Needs Review,” “Awaiting Legal Approval,” or “Ready to Publish.” This replicates the multi-stage review and approval process of AEM, allowing for greater content quality control.
Using plugins for notifications and task assignments
With these plugins, notifications can be automatically sent to relevant users, such as editors and approvers, whenever content moves to a new stage. This automated communication helps streamline the editorial process, similar to AEM’s workflow tools.
Migrating AEM Forms to WordPress
In AEM, forms are used for capturing user data, often with complex workflows and conditions. WordPress has a default commenting and contact functionality, but it lacks built-in support for creating complex forms with logic, field validation, or integrations with external services. Only develop custom forms if you need very specific features.

Using form plugins like Gravity Forms
You can use Gravity Forms to replicate AEM’s advanced form functionality. Gravity Forms offers drag-and-drop form creation, conditional logic, and support for multi-step forms, similar to what AEM Forms provides. This makes the migration of AEM forms into WordPress much more straightforward for businesses and reduces development time.
We could even call Gravity Forms a complete WordPress alternative to AEM Forms! Gravity Forms provides many pre-built fields and options, which simplifies the recreation of existing AEM forms. It even integrates easily with external services, such as CRMs or email marketing tools, ensuring that the workflows from AEM remain intact.
Custom workflows for form handling
If AEM forms triggered workflows such as sending data to CRMs, these can be replicated using hooks in WordPress. Here’s an example using Gravity Forms:
add_action('gform_after_submission', 'send_data_to_crm', 10, 2);
function send_data_to_crm($entry, $form) {
$data = [
'name' => rgar($entry, '1'),
'email' => rgar($entry, '2'),
];
// Use CURL or any HTTP client to send data to CRM.
}
Form data migration
To migrate your form data, export data from AEM as a CSV file and then import it into WordPress using a tool like WP All Import. This ensures historical form data is preserved without manual effort.
Migrating analytics from AEM to WordPress
AEM integrates closely with Adobe Analytics for tracking. To replicate similar analytics functionality in WordPress, you can use the ubiquitous Google Analytics.
Google Analytics integration
You can implement Google Analytics by adding its tracking script to your theme or integrating it with a Tag Management solution such as Google Tag Manager. This helps to monitor user activity, understand behavior, and gather important insights just as effectively as Adobe Analytics.
Historical data migration
If you want to maintain historical tracking data, export it from Adobe Analytics in CSV or JSON format for archival purposes or import it into a data visualization tool for ongoing analysis.
Recreating AEM’s marketing automation on WordPress
In AEM, you might have used features like Adobe Campaign for marketing automation. WordPress can achieve similar automation through integrations with third party solutions:
For example, you can connect MailChimp or another email marketing platform with your forms to automate email marketing campaigns. This allows you to continue nurturing your leads and creating campaigns automatically.
For more specific requirements, custom scripts can be developed to integrate with email marketing systems using their available APIs, ensuring that all marketing campaigns remain automated.
Migrating AEM tags and taxonomies to WordPress
WordPress has built-in support for categories and tags as well as the ability to create custom taxonomies. To migrate AEM taxonomies to WordPress, extract tags and taxonomies from AEM in JSON format and import them into WordPress using WP-CLI commands or custom scripts to ensure a consistent classification structure
wp term create category "New Category Name"
wp term create post_tag "Tag from AEM" --description="Imported tag description"
This helps preserve the organization of your content and maintains searchability.
WP All Import. This ensures historical form data is preserved without manual effort.
Recreating AEM’s caching and performance optimization features on WordPress
WordPress offers basic caching functionality that can be extended using server-level or object caching tools.
Object and page caching
You can set up caching using tools like Redis or Memcached for object-level caching to improve database query response times. Use server-level caching to store rendered pages for quicker delivery.
CDN integration for better performance
Implement a Content Delivery Network (CDN) such as Cloudflare to replicate the global content caching and delivery that AEM uses. This ensures your WordPress site is optimized for users regardless of their geographic location.
Rebuilding AEM’s search functionality on WordPress
To offer a quality search experience on WordPress, you can consider integrating a search solution like Elasticsearch into your WordPress environment. Elasticsearch provides similar speed and relevance in search results, ensuring users can quickly find the content they’re interested in.
The migration process
PREVIOUS
Good Work. Good People.
Industry partnerships


Compliance certifications
United States
India
© rtCamp Inc. since 2009. All rights reserved.
Terms of Service · Privacy Policy · Trust Center
Company
Solutions
Subscribe to our newsletter and get a few email updates every month.
United States
India
© rtCamp Inc. since 2009. All rights reserved.
Terms of Service · Privacy Policy · Trust Center
Cookie Consent
We value your privacy
We use cookies to give you the best possible experience. By clicking “Accept,” you consent to our use of cookies to improve site functionality, analyze usage, and personalize content and communications. Your privacy matters to us, and we are committed to handling your data responsibly and transparently. Please check our Privacy Policy for more details.
Manage PreferencesDon’t AllowAllow All
Why do we use cookies?
×
By clicking "Accept" or "Decline All" at the bottom, you consent to the use of cookies and other tools as described in our Cookie Policy in accordance with your settings and accept our Terms of Service.
Toggle EssentialEssential
Essential cookies enable basic functions and are necessary for the proper function of the website.
Name
Description
Duration
Geolocation Config
This cookie is used to store the consent settings based on the visitor's location.
30 days
Cookie Preferences
This cookie is used to store the user's cookie consent preferences.
30 days
Toggle CloudFlareCloudFlare
CloudFlare provides web performance and security solutions, enhancing site speed and protecting against threats.
Service URL: developers.cloudflare.com (opens in a new window)
Name
Description
Duration
cf_clearance
Whether a CAPTCHA or Javascript challenge has been solved.
session
Toggle CommentsComments
These cookies are needed for adding comments on this website.
Name
Description
Duration
comment_author
Used to track the user across multiple sessions.
Session
comment_author_email
Used to track the user across multiple sessions.
Session
comment_author_url
Used to track the user across multiple sessions.
Session
Toggle GodamGodam
GoDAM" is primarily a specialized WordPress plugin and media management service designed to enhance video hosting, marketing, and asset management directly within the WordPress dashboard.
Service URL: godam.io (opens in a new window)
Name
Description
Duration
user_image
Temporarily stores the path to the user's avatar or profile picture for quick rendering in the website header.
session
user_id
Stores the numerical ID of the logged-in user to maintain session continuity and basic site operations.
session
full_name
Stores the logged-in user's display name to personalize the site interface without needing database queries.
session
system_user
First-party cookie used to store basic application state identifying the current system user role.
session
sid
A generic session ID cookie used to maintain user state and functionality as the visitor navigates through the site.
session
Toggle Google reCAPTCHAGoogle reCAPTCHA
Google reCAPTCHA helps protect websites from spam and abuse by verifying user interactions through challenges.
Name
Description
Duration
_GRECAPTCHA
Google reCAPTCHA sets a necessary cookie (_GRECAPTCHA) when executed for the purpose of providing its risk analysis.
179 days
Toggle Google Tag ManagerGoogle Tag Manager
Google Tag Manager simplifies the management of marketing tags on your website without code changes.
Name
Description
Duration
cookiePreferences
Registers cookie preferences of a user
2 years
td
Registers statistical data on users' behaviour on the website. Used for internal analytics by the website operator.
session
Toggle StatisticsStatistics
Statistics cookies collect information anonymously. This information helps us understand how visitors use our website.
Toggle Factors AIFactors AI
Factors.ai is a B2B account intelligence and marketing analytics platform that helps Go-To-Market (GTM) teams identify anonymous website visitors, track buyer journeys, and measure the ROI of marketing campaigns.
Service URL: www.factors.ai (opens in a new window)
Name
Description
Duration
_fuid
It is sent to capture session details and track user behavior across your website to provide behavioral data and intent signals.
1 Year
Toggle Google AnalyticsGoogle Analytics
Google Analytics is a powerful tool that tracks and analyzes website traffic for informed marketing decisions.
Service URL: policies.google.com (opens in a new window)
Name
Description
Duration
FPGSID
Stores a session or user identifier to track how visitors interact with a website. This helps Google Analytics measure website performance, user engagement, and usage patterns.
Session
FPLC
Used by Google Analytics to link visitor interactions and sessions across multiple related domains.
20 hours
FPID
A server-side Google Analytics cookie used as an alternative user identifier when third-party cookies are restricted.
2 years
_ga
ID used to identify users
2 years
_ga_
ID used to identify users
2 years
Toggle Jetpack StatsJetpack Stats
Jetpack's built-in visitor analytics. It records page views, referring sites, search terms, and outbound link clicks, and also carries the shared visitor-tracking library used by Jetpack Instant Search and WooCommerce Analytics.
Service URL: automattic.com (opens in a new window)
Name
Description
Duration
tk_aip
Stores a list of anonymous visitor IDs so they can be merged into one identity once a visitor is recognized.
Up to 5 years
tk_tc
Used once per page load to work out which cookie domain the Tracks library should use, then removed as soon as it's read back.
Session (deleted immediately after use)
tk_qs
Queues analytics events for Jetpack's Tracks library so none are lost if the page closes before they can be sent.
30 minutes
tk_ai
Stores a randomly-generated anonymous visitor ID so Jetpack's Tracks analytics library can link tracking events to the same visitor.
Session in wp-admin; up to 5 years on the frontend
Toggle Microsoft ClarityMicrosoft Clarity
Clarity is a web analytics service that tracks and reports website traffic.
Service URL: clarity.microsoft.com (opens in a new window)
Name
Description
Duration
CLID
Identifies the first-time Clarity saw this user on any site using Clarity.
12 months
ANONCHK
Indicates whether MUID is transferred to ANID, a cookie used for advertising. Clarity doesn't use ANID and so this is always set to 0.
Session
_clck
Persists the Clarity User ID and preferences, unique to that site is attributed to the same user ID.
12 months
_clsk
Connects multiple page views by a user into a single Clarity session recording.
12 months
Toggle Parse.lyParse.ly
Parse.ly is a content analytics platform that helps publishers optimize audience engagement and content performance.
Name
Description
Duration
cookies.js_dtest
This cookie determines whether the browser accepts cookies.
session
_parsely_session
JSON document storing information identifying a browsing session according to Parsely’s proprietary definition
30 minutes
_parsely_visitor
JSON document uniquely identifying a browser and counting its sessions
13 months
Toggle SalespanelSalespanel
Salespanel is a B2B marketing and sales software that identifies, tracks, and qualifies website visitors and leads in real-time using first-party data. It helps businesses monitor customer journeys, score leads based on behavior, and syncs this data with CRMs (like Pipedrive or HubSpot) to improve conversion rates.
Service URL: salespanel.io (opens in a new window)
Name
Description
Duration
track_uid
Identify and tracking a lead
12 moths
Toggle MarketingMarketing
Marketing cookies are used to follow visitors to websites. The intention is to show ads that are relevant and engaging to the individual user.
Toggle Bing / MicrosoftBing / Microsoft
Bing, powered by Microsoft, is a search engine providing web, image, video, and map search capabilities.
Name
Description
Duration
MR
Used to collect information for analytics purposes.
6 months
ANONCHK
Used to store session ID for a users session to ensure that clicks from adverts on the Bing search engine are verified for reporting purposes and for personalisation
10 minutes
SM
Used by Microsoft in synchronizing the MUID across multiple Microsoft domains to track users for advertising.
session
MUID
Identifies unique web browsers visiting Microsoft sites. These cookies are used for advertising, site analytics, and other operational purposes.
1 year
Toggle DoubleClick/Google MarketingDoubleClick/Google Marketing
A comprehensive digital advertising platform for managing campaigns, optimizing performance, and analyzing audience data.
Name
Description
Duration
IDE
This cookie is used for targeting, analyzing and optimisation of ad campaigns in DoubleClick/Google Marketing Suite
2 years
ar_debug
Store and track conversions
Persistent
Toggle LinkedInLinkedIn
LinkedIn is a professional networking platform for job seekers, employers, and industry connections.
Name
Description
Duration
bscookie
Used by LinkedIn to track the use of embedded services.
1 year
AnalyticsSyncHistory
Used to store information about the time a sync with the lms_analytics cookie took place for users in the Designated Countries
30 days
bcookie
Used by LinkedIn to track the use of embedded services.
1 year
li_sugr
Used to make a probabilistic match of a user's identity outside the Designated Countries
90 days
lidc
Used by the social networking service, LinkedIn, for tracking the use of embedded services.
1 day
UserMatchHistory
Used by LinkedIn Ads to synchronize and match user IDs across different ad networks and data providers.
30 days
Toggle LinkedIn InsightLinkedIn Insight
LinkedIn Insight is a web analytics service that tracks and reports website traffic.
Service URL: www.linkedin.com (opens in a new window)
Name
Description
Duration
li_sugr
Used to make a probabilistic match of a user's identity.
90 days
lidc
Used for routing and session management.
24 hours
Toggle LiveIntentLiveIntent
LiveIntent provides a platform for email advertising and identity-driven marketing solutions.
Name
Description
Duration
_lc2_fpi_js
Companion cookie to _lc2_fpi used by JavaScript to facilitate cross-domain ad tracking and user identification.
1 year
_lc2_fpi
First-party tracking cookie usually associated with LiveRamp to identify users across devices for targeted advertising.
1 Year
_li_ss
Sets a unique ID for the visitor, that allows third party advertisers to target the visitor with relevant advertisement. This pairing service is provided by third party advertisement hubs, which facilitates real-time bidding for advertisers.
1 month
lidid
Collects data on visitors' behaviour and interaction - This is used to make advertisement on the website more relevant. The cookie also allows the website to detect any referrals from other websites.
2 years
Toggle Cookie PolicyCookie Policy
You can find more information in our Privacy Policy.
Allow AllDecline All
Accept





