Với các thành phần và ngân sách bắt buộc, giờ đây, bạn có thể tạo chiến dịch.
Chiến dịch Tối đa hoá hiệu suất có AdvertisingChannelType
là PERFORMANCE_MAX
. Bạn không nên đặt AdvertisingChannelSubType
.
Chiến lược đặt giá thầu duy nhất được hỗ trợ là:
Nếu bạn không theo dõi các giá trị và quan tâm đến tất cả lượt chuyển đổi như nhau, hãy sử dụng chiến lược đặt giá thầu
MaximizeConversions
. Bạn có thể đặt CPA (chi phí mỗi hành động) mục tiêu (không bắt buộc). Tìm hiểu thêm.Nếu bạn đang theo dõi giá trị cùng với lượt chuyển đổi, hãy đặt chiến lược đặt giá thầu
MaximizeConversionValue
. Bạn có thể đặt ROAS mục tiêu (Lợi tức trên chi tiêu quảng cáo) (không bắt buộc). Tìm hiểu thêm.
Chiến dịch Tối đa hoá hiệu suất không hỗ trợ chiến lược giá thầu danh mục đầu tư được tạo bằng BiddingStrategyService
. Thay vì tạo nhiều chiến dịch trong một chiến lược đặt giá thầu danh mục đầu tư, hãy sử dụng ít chiến dịch hơn và nhiều nhóm thành phần hơn.
Java
/** Creates a MutateOperation that creates a new Performance Max campaign. */ private MutateOperation createPerformanceMaxCampaignOperation( long customerId, boolean brandGuidelinesEnabled) { Campaign performanceMaxCampaign = Campaign.newBuilder() .setName("Performance Max campaign #" + getPrintableDateTime()) // Sets the campaign status as PAUSED. The campaign is the only entity in // the mutate request that should have its status set. .setStatus(CampaignStatus.PAUSED) // All Performance Max campaigns have an advertising_channel_type of // PERFORMANCE_MAX. The advertising_channel_sub_type should not be set. .setAdvertisingChannelType(AdvertisingChannelType.PERFORMANCE_MAX) // Bidding strategy must be set directly on the campaign. // Setting a portfolio bidding strategy by resource name is not supported. // Max Conversion and Maximize Conversion Value are the only strategies // supported for Performance Max campaigns. // An optional ROAS (Return on Advertising Spend) can be set for // maximize_conversion_value. The ROAS value must be specified as a ratio in // the API. It is calculated by dividing "total value" by "total spend". // For more information on Maximize Conversion Value, see the support // article: http://support.google.com/google-ads/answer/7684216. // A targetRoas of 3.5 corresponds to a 350% return on ad spend. .setMaximizeConversionValue( MaximizeConversionValue.newBuilder().setTargetRoas(3.5).build()) // Sets the Final URL expansion opt out. This flag is specific to // Performance Max campaigns. If opted out (True), only the final URLs in // the asset group or URLs specified in the advertiser's Google Merchant // Center or business data feeds are targeted. // If opted in (False), the entire domain will be targeted. For best // results, set this value to false to opt in and allow URL expansions. You // can optionally add exclusions to limit traffic to parts of your website. .setUrlExpansionOptOut(false) // Sets if the campaign is enabled for brand guidelines. For more information on brand // guidelines, see https://support.google.com/google-ads/answer/14934472. .setBrandGuidelinesEnabled(brandGuidelinesEnabled) // Assigns the resource name with a temporary ID. .setResourceName( ResourceNames.campaign(customerId, PERFORMANCE_MAX_CAMPAIGN_TEMPORARY_ID)) // Sets the budget using the given budget resource name. .setCampaignBudget(ResourceNames.campaignBudget(customerId, BUDGET_TEMPORARY_ID)) // Declares whether this campaign serves political ads targeting the EU. .setContainsEuPoliticalAdvertising(DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING) // Optional fields. .setStartDate(new DateTime().plusDays(1).toString("yyyyMMdd")) .setEndDate(new DateTime().plusDays(365).toString("yyyyMMdd")) .build(); return MutateOperation.newBuilder() .setCampaignOperation( CampaignOperation.newBuilder().setCreate(performanceMaxCampaign).build()) .build(); }
C#
/// Creates a MutateOperation that creates a new Performance Max campaign. /// <param name="campaignResourceName">The campaign resource name.</param> /// <param name="campaignBudgetResourceName">The campaign budget resource name.</param> /// <param name="brandGuidelinesEnabled">Whether or not to enable brand guidelines.</param> /// <returns>A MutateOperations that will create this new campaign.</returns> private MutateOperation CreatePerformanceMaxCampaignOperation( string campaignResourceName, string campaignBudgetResourceName, bool brandGuidelinesEnabled) { MutateOperation operation = new MutateOperation() { CampaignOperation = new CampaignOperation() { Create = new Campaign() { Name = "Performance Max campaign #" + ExampleUtilities.GetRandomString(), // Set the campaign status as PAUSED. The campaign is the only entity in // the mutate request that should have its status set. Status = CampaignStatus.Paused, // All Performance Max campaigns have an AdvertisingChannelType of // PerformanceMax. The AdvertisingChannelSubType should not be set. AdvertisingChannelType = AdvertisingChannelType.PerformanceMax, // Bidding strategy must be set directly on the campaign. Setting a // portfolio bidding strategy by resource name is not supported. Max // Conversion and Maximize Conversion Value are the only strategies // supported for Performance Max campaigns. BiddingStrategyType is // read-only and cannot be set by the API. An optional ROAS (Return on // Advertising Spend) can be set to enable the MaximizeConversionValue // bidding strategy. The ROAS value must be specified as a ratio in the API. // It is calculated by dividing "total value" by "total spend". // // For more information on Maximize Conversion Value, see the support // article: // http://support.google.com/google-ads/answer/7684216. // // A target_roas of 3.5 corresponds to a 350% return on ad spend. MaximizeConversionValue = new MaximizeConversionValue() { TargetRoas = 3.5 }, // Set the Final URL expansion opt out. This flag is specific to // Performance Max campaigns. If opted out (True), only the final URLs in // the asset group or URLs specified in the advertiser's Google Merchant // Center or business data feeds are targeted. // If opted in (False), the entire domain will be targeted. For best // results, set this value to false to opt in and allow URL expansions. You // can optionally add exclusions to limit traffic to parts of your website. UrlExpansionOptOut = false, // Use the temporary resource name created earlier ResourceName = campaignResourceName, // Set the budget using the given budget resource name. CampaignBudget = campaignBudgetResourceName, // Set if the campaign is enabled for brand guidelines. For more information // on brand guidelines, see https://support.google.com/google-ads/answer/14934472. BrandGuidelinesEnabled = brandGuidelinesEnabled, // Declare whether or not this campaign contains political ads targeting the EU. ContainsEuPoliticalAdvertising = EuPoliticalAdvertisingStatus.DoesNotContainEuPoliticalAdvertising, // Optional fields StartDate = DateTime.Now.AddDays(1).ToString("yyyyMMdd"), EndDate = DateTime.Now.AddDays(365).ToString("yyyyMMdd") } } }; return operation; }
PHP
private static function createPerformanceMaxCampaignOperation( int $customerId, bool $brandGuidelinesEnabled ): MutateOperation { // Creates a mutate operation that creates a campaign operation. return new MutateOperation([ 'campaign_operation' => new CampaignOperation([ 'create' => new Campaign([ 'name' => 'Performance Max campaign #' . Helper::getPrintableDatetime(), // Assigns the resource name with a temporary ID. 'resource_name' => ResourceNames::forCampaign( $customerId, self::PERFORMANCE_MAX_CAMPAIGN_TEMPORARY_ID ), // Sets the budget using the given budget resource name. 'campaign_budget' => ResourceNames::forCampaignBudget( $customerId, self::BUDGET_TEMPORARY_ID ), // The campaign is the only entity in the mutate request that should have its // status set. // Recommendation: Set the campaign to PAUSED when creating it to prevent // the ads from immediately serving. 'status' => CampaignStatus::PAUSED, // All Performance Max campaigns have an advertising_channel_type of // PERFORMANCE_MAX. The advertising_channel_sub_type should not be set. 'advertising_channel_type' => AdvertisingChannelType::PERFORMANCE_MAX, // Bidding strategy must be set directly on the campaign. // Setting a portfolio bidding strategy by resource name is not supported. // Max Conversion and Maximize Conversion Value are the only strategies // supported for Performance Max campaigns. // An optional ROAS (Return on Advertising Spend) can be set for // maximize_conversion_value. The ROAS value must be specified as a ratio in // the API. It is calculated by dividing "total value" by "total spend". // For more information on Maximize Conversion Value, see the support // article: http://support.google.com/google-ads/answer/7684216. // A target_roas of 3.5 corresponds to a 350% return on ad spend. 'maximize_conversion_value' => new MaximizeConversionValue([ 'target_roas' => 3.5 ]), // Sets the Final URL expansion opt out. This flag is specific to // Performance Max campaigns. If opted out (true), only the final URLs in // the asset group or URLs specified in the advertiser's Google Merchant // Center or business data feeds are targeted. // If opted in (false), the entire domain will be targeted. For best // results, set this value to false to opt in and allow URL expansions. You // can optionally add exclusions to limit traffic to parts of your website. 'url_expansion_opt_out' => false, // Sets if the campaign is enabled for brand guidelines. For more information // on brand guidelines, see // https://support.google.com/google-ads/answer/14934472. 'brand_guidelines_enabled' => $brandGuidelinesEnabled, // Declare whether or not this campaign serves political ads targeting the EU. 'contains_eu_political_advertising' => EuPoliticalAdvertisingStatus::DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING, // Optional fields. 'start_date' => date('Ymd', strtotime('+1 day')), 'end_date' => date('Ymd', strtotime('+365 days')) ]) ]) ]); }
Python
def create_performance_max_campaign_operation( client: GoogleAdsClient, customer_id: str, brand_guidelines_enabled: bool, ) -> MutateOperation: """Creates a MutateOperation that creates a new Performance Max campaign. A temporary ID will be assigned to this campaign so that it can be referenced by other objects being created in the same Mutate request. Args: client: an initialized GoogleAdsClient instance. customer_id: a client customer ID. brand_guidelines_enabled: a boolean value indicating if the campaign is enabled for brand guidelines. Returns: a MutateOperation that creates a campaign. """ mutate_operation: MutateOperation = client.get_type("MutateOperation") campaign: Campaign = mutate_operation.campaign_operation.create campaign.name = f"Performance Max campaign #{uuid4()}" # Set the campaign status as PAUSED. The campaign is the only entity in # the mutate request that should have its status set. campaign.status = client.enums.CampaignStatusEnum.PAUSED # All Performance Max campaigns have an advertising_channel_type of # PERFORMANCE_MAX. The advertising_channel_sub_type should not be set. campaign.advertising_channel_type = ( client.enums.AdvertisingChannelTypeEnum.PERFORMANCE_MAX ) # Bidding strategy must be set directly on the campaign. # Setting a portfolio bidding strategy by resource name is not supported. # Max Conversion and Maximize Conversion Value are the only strategies # supported for Performance Max campaigns. # An optional ROAS (Return on Advertising Spend) can be set for # maximize_conversion_value. The ROAS value must be specified as a ratio in # the API. It is calculated by dividing "total value" by "total spend". # For more information on Maximize Conversion Value, see the support # article: http://support.google.com/google-ads/answer/7684216. # A target_roas of 3.5 corresponds to a 350% return on ad spend. campaign.bidding_strategy_type = ( client.enums.BiddingStrategyTypeEnum.MAXIMIZE_CONVERSION_VALUE ) campaign.maximize_conversion_value.target_roas = 3.5 # Set the Final URL expansion opt out. This flag is specific to # Performance Max campaigns. If opted out (True), only the final URLs in # the asset group or URLs specified in the advertiser's Google Merchant # Center or business data feeds are targeted. # If opted in (False), the entire domain will be targeted. For best # results, set this value to false to opt in and allow URL expansions. You # can optionally add exclusions to limit traffic to parts of your website. campaign.url_expansion_opt_out = False # Set if the campaign is enabled for brand guidelines. For more information # on brand guidelines, see https://support.google.com/google-ads/answer/14934472. campaign.brand_guidelines_enabled = brand_guidelines_enabled # Assign the resource name with a temporary ID. campaign_service: CampaignServiceClient = client.get_service( "CampaignService" ) campaign.resource_name = campaign_service.campaign_path( customer_id, _PERFORMANCE_MAX_CAMPAIGN_TEMPORARY_ID ) # Set the budget using the given budget resource name. campaign.campaign_budget = campaign_service.campaign_budget_path( customer_id, _BUDGET_TEMPORARY_ID ) # Declare whether or not this campaign serves political ads targeting the # EU. Valid values are: # CONTAINS_EU_POLITICAL_ADVERTISING # DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING campaign.contains_eu_political_advertising = ( client.enums.EuPoliticalAdvertisingStatusEnum.DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING ) # Optional fields campaign.start_date = (datetime.now() + timedelta(1)).strftime("%Y%m%d") campaign.end_date = (datetime.now() + timedelta(365)).strftime("%Y%m%d") return mutate_operation
Ruby
# Creates a MutateOperation that creates a new Performance Max campaign. # # A temporary ID will be assigned to this campaign so that it can # be referenced by other objects being created in the same Mutate request. def create_performance_max_campaign_operation( client, customer_id, brand_guidelines_enabled) client.operation.mutate do |m| m.campaign_operation = client.operation.create_resource.campaign do |c| c.name = "Performance Max campaign #{SecureRandom.uuid}" # Set the campaign status as PAUSED. The campaign is the only entity in # the mutate request that should have its status set. c.status = :PAUSED # All Performance Max campaigns have an advertising_channel_type of # PERFORMANCE_MAX. The advertising_channel_sub_type should not be set. c.advertising_channel_type = :PERFORMANCE_MAX # Bidding strategy must be set directly on the campaign. # Setting a portfolio bidding strategy by resource name is not supported. # Max Conversion and Maximize Conversion Value are the only strategies # supported for Performance Max campaigns. # An optional ROAS (Return on Advertising Spend) can be set for # maximize_conversion_value. The ROAS value must be specified as a ratio in # the API. It is calculated by dividing "total value" by "total spend". # For more information on Maximize Conversion Value, see the support # article: http://support.google.com/google-ads/answer/7684216. # A target_roas of 3.5 corresponds to a 350% return on ad spend. c.bidding_strategy_type = :MAXIMIZE_CONVERSION_VALUE c.maximize_conversion_value = client.resource.maximize_conversion_value do |mcv| mcv.target_roas = 3.5 end # Set the Final URL expansion opt out. This flag is specific to # Performance Max campaigns. If opted out (true), only the final URLs in # the asset group or URLs specified in the advertiser's Google Merchant # Center or business data feeds are targeted. # If opted in (false), the entire domain will be targeted. For best # results, set this value to false to opt in and allow URL expansions. You # can optionally add exclusions to limit traffic to parts of your website. c.url_expansion_opt_out = false # Set if the campaign is enabled for brand guidelines. For more # information on brand guidelines, see # https://support.google.com/google-ads/answer/14934472. c.brand_guidelines_enabled = brand_guidelines_enabled # Assign the resource name with a temporary ID. c.resource_name = client.path.campaign(customer_id, PERFORMANCE_MAX_CAMPAIGN_TEMPORARY_ID) # Set the budget using the given budget resource name. c.campaign_budget = client.path.campaign_budget(customer_id, BUDGET_TEMPORARY_ID) # Declare whether or not this campaign serves political ads targeting the EU. # Valid values are CONTAINS_EU_POLITICAL_ADVERTISING and # DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING. c.contains_eu_political_advertising = :DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING # Optional fields c.start_date = DateTime.parse((Date.today + 1).to_s).strftime('%Y%m%d') c.end_date = DateTime.parse(Date.today.next_year.to_s).strftime('%Y%m%d') end end end
Perl
sub create_performance_max_campaign_operation { my ($customer_id, $brand_guidelines_enabled) = @_; # Create a mutate operation that creates a campaign operation. return Google::Ads::GoogleAds::V21::Services::GoogleAdsService::MutateOperation-> new({ campaignOperation => Google::Ads::GoogleAds::V21::Services::CampaignService::CampaignOperation ->new({ create => Google::Ads::GoogleAds::V21::Resources::Campaign->new({ # Assign the resource name with a temporary ID. resourceName => Google::Ads::GoogleAds::V21::Utils::ResourceNames::campaign( $customer_id, PERFORMANCE_MAX_CAMPAIGN_TEMPORARY_ID ), name => "Performance Max campaign #" . uniqid(), # Set the budget using the given budget resource name. campaignBudget => Google::Ads::GoogleAds::V21::Utils::ResourceNames::campaign_budget( $customer_id, BUDGET_TEMPORARY_ID ), # Set the campaign status as PAUSED. The campaign is the only entity in # the mutate request that should have its status set. status => Google::Ads::GoogleAds::V21::Enums::CampaignStatusEnum::PAUSED, # All Performance Max campaigns have an advertisingChannelType of # PERFORMANCE_MAX. The advertisingChannelSubType should not be set. advertisingChannelType => PERFORMANCE_MAX, # Bidding strategy must be set directly on the campaign. # Setting a portfolio bidding strategy by resource name is not supported. # Max Conversion and Maximize Conversion Value are the only strategies # supported for Performance Max campaigns. # An optional ROAS (Return on Advertising Spend) can be set for # maximizeConversionValue. The ROAS value must be specified as a ratio in # the API. It is calculated by dividing "total value" by "total spend". # For more information on Maximize Conversion Value, see the support # article: http://support.google.com/google-ads/answer/7684216. # A targetRoas of 3.5 corresponds to a 350% return on ad spend. maximizeConversionValue => Google::Ads::GoogleAds::V21::Common::MaximizeConversionValue-> new({ targetRoas => 3.5 } ), # Set the final URL expansion opt out. This flag is specific to # Performance Max campaigns. If opted out (true), only the final URLs in # the asset group or URLs specified in the advertiser's Google Merchant # Center or business data feeds are targeted. # If opted in (false), the entire domain will be targeted. For best # results, set this value to false to opt in and allow URL expansions. You # can optionally add exclusions to limit traffic to parts of your website. urlExpansionOptOut => "false", # Set if the campaign is enabled for brand guidelines. For more information # on brand guidelines, see https://support.google.com/google-ads/answer/14934472. brandGuidelinesEnabled => $brand_guidelines_enabled, # Optional fields. startDate => strftime("%Y%m%d", localtime(time + 60 * 60 * 24)), endDate => strftime("%Y%m%d", localtime(time + 60 * 60 * 24 * 365)), # Declare whether or not this campaign serves political ads targeting the EU. # Valid values are CONTAINS_EU_POLITICAL_ADVERTISING and # DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING. containsEuPoliticalAdvertising => DOES_NOT_CONTAIN_EU_POLITICAL_ADVERTISING })})}); }
Đề xuất về chiến lược đặt giá thầu
Google Ads API cung cấp 2 loại đề xuất để giúp bạn tối ưu hoá chiến lược đặt giá thầu cho chiến dịch Tối đa hoá hiệu suất:
MAXIMIZE_CONVERSION_VALUE_OPT_IN
đề xuất sử dụng chiến lược đặt giá thầu tối đa hoá giá trị lượt chuyển đổi cho chiến dịch của bạn.MAXIMIZE_CONVERSIONS_OPT_IN
đề xuất sử dụng chiến lược đặt giá thầu tối đa hoá lượt chuyển đổi cho chiến dịch của bạn và đưa ra số tiền ngân sách được đề xuất.
Để biết thêm thông tin về cách sử dụng các đề xuất, hãy xem hướng dẫn Điểm tối ưu hoá và đề xuất.
Nguyên tắc trình bày thương hiệu
Nguyên tắc sử dụng thương hiệu kiểm soát cách thương hiệu của bạn được trình bày trong các thành phần tự động hoặc định dạng của chiến dịch Tối đa hoá hiệu suất. Kể từ Google Ads API phiên bản 21, chiến dịch Tối đa hoá hiệu suất sẽ tự động bật nguyên tắc sử dụng thương hiệu cho tất cả chiến dịch Tối đa hoá hiệu suất mới để thúc đẩy doanh số bán hàng trực tuyến hoặc tạo khách hàng tiềm năng (chuẩn) và chiến dịch Tối đa hoá hiệu suất để thúc đẩy doanh số bán hàng trực tuyến thông qua nguồn cấp dữ liệu sản phẩm (bán lẻ). Nếu bạn không muốn bật nguyên tắc sử dụng thương hiệu trên chiến dịch mới, hãy đặt Campaign.brand_guidelines_enabled
thành false
khi tạo chiến dịch Tối đa hoá hiệu suất mới.
Chiến dịch Tối đa hoá hiệu suất có bật nguyên tắc sử dụng thương hiệu sẽ sử dụng các thành phần ở cấp chiến dịch cho các loại trường thành phần thương hiệu (BUSINESS_NAME
, LOGO
và LANDSCAPE_LOGO
). Bạn phải liên kết thành phần thương hiệu với chiến dịch bằng cách sử dụng CampaignAsset
và chiến dịch phải có:
- Đúng một thành phần
BUSINESS_NAME
- Ít nhất một thành phần
LOGO
và tối đa 4 thành phần biểu trưng bổ sung không bắt buộc thuộc loạiLOGO
hoặcLANDSCAPE_LOGO
Bạn có thể đặt các nguyên tắc không bắt buộc về màu sắc và phông chữ cho chiến dịch bằng cách sử dụng trường Campaign.brand_guidelines
:
main_color
đặt màu chính. Bạn phải cung cấp màu dưới dạng chuỗi mã hex (ví dụ: #00ff00).accent_color
đặt màu phụ. Bạn phải cung cấp màu dưới dạng chuỗi mã hex (ví dụ: #00ff00).- Dùng
predefined_font_family
để đặt phông chữ. Giá trị phải là một trong các phông chữ sau đây của Google (phân biệt chữ hoa chữ thường): Open Sans, Roboto, Montserrat, Poppins, Lato, Oswald, Playfair Display, Roboto Slab.
Di chuyển tự động
Kể từ ngày 1 tháng 6 năm 2025, chúng tôi sẽ bắt đầu tự động bật nguyên tắc sử dụng thương hiệu cho những chiến dịch Tối đa hoá hiệu suất sử dụng cùng một thành phần thương hiệu (BUSINESS_NAME
, LOGO
và LANDSCAPE_LOGO
) trên tất cả các nhóm thành phần. Tất cả chiến dịch có thể được tự động di chuyển sẽ được di chuyển muộn nhất vào ngày 30 tháng 10 năm 2025.
- Quá trình di chuyển tự động sẽ chỉ diễn ra đối với những chiến dịch sử dụng tên và biểu trưng doanh nghiệp nhất quán trong mọi nhóm thành phần. Nếu chiến dịch của bạn có các biến thể trong những thành phần này, thì chiến dịch đó sẽ không được di chuyển tự động.
- Tất cả chiến dịch Tối đa hoá hiệu suất đủ điều kiện trong một mã khách hàng sẽ được di chuyển đồng thời.
- Sau khi di chuyển, mỗi chiến dịch được di chuyển sẽ có một nhóm tài sản thương hiệu riêng được lưu trữ ở cấp chiến dịch bằng cách sử dụng
CampaignAsset
.
Bạn có thể biết liệu một chiến dịch đã được di chuyển hay chưa bằng cách kiểm tra trường Campaign.brand_guidelines_enabled
của chiến dịch đó.
Di chuyển theo cách thủ công
Những chiến dịch không đủ điều kiện để di chuyển tự động cần được di chuyển theo cách thủ công để bật nguyên tắc sử dụng thương hiệu.
Campaign.brand_guidelines_enabled
cho biết liệu một chiến dịch hiện có có được bật theo nguyên tắc trình bày thương hiệu hay không. Để bật nguyên tắc sử dụng thương hiệu theo cách thủ công cho một chiến dịch hiện có, hãy sử dụng CampaignService.EnablePMaxBrandGuidelines
thay vì cập nhật trực tiếp trường brand_guidelines_enabled
, vì trường này là bất biến. Đặt auto_populate_brand_assets
thành true
để tự động điền các thành phần thương hiệu hoạt động hiệu quả nhất vào chiến dịch. Nếu không, bạn phải cung cấp tài sản trong thao tác bằng brand_assets
theo cách thủ công. Chúng tôi không hỗ trợ việc tắt nguyên tắc sử dụng thương hiệu cho một chiến dịch.
Không bắt buộc: Tính năng Mở rộng URL cuối cùng
Tính năng Mở rộng URL giúp bạn tối ưu hoá hiệu suất của chiến dịch Tối đa hoá hiệu suất. Sử dụng tính năng mở rộng URL để thay thế URL cuối cùng bằng một trang đích và dòng tiêu đề linh động phù hợp hơn dựa trên ý định của khách hàng. Theo mặc định, tính năng mở rộng URL sẽ:
- Tắt, nếu bạn áp dụng bộ lọc sản phẩm.
- Bật khi nhắm đến tất cả sản phẩm.
Đặt Campaign.final_url_expansion_opt_out
để thay đổi các giá trị mặc định này.
Sử dụng WEBPAGE
tiêu chí chiến dịch để đặt tiêu chí loại trừ tính năng mở rộng URL.
Để xem mọi thành phần được tạo tự động mà chế độ cài đặt mở rộng URL cuối cùng tạo ra, hãy sử dụng final_url_expansion_asset_view
.
Bạn có thể xoá một thành phần mở rộng URL được tạo tự động bằng biểu tượng AutomaticallyCreatedAssetRemovalService
.