Google Ads มีการเพิ่มประสิทธิภาพชิ้นงานหลายอย่างที่สามารถดำเนินการโดยอัตโนมัติเพื่อปรับปรุงคะแนนคุณภาพโฆษณา
ซึ่งมีตั้งแต่การสร้างชิ้นงานรูปภาพโดยอัตโนมัติพร้อมตัวอย่างหน้า Landing Page ของโฆษณา ไปจนถึงการเพิ่มประสิทธิภาพชิ้นงานวิดีโอสำหรับรูปแบบและความยาวต่างๆ
การตั้งค่าการทำงานอัตโนมัติของชิ้นงานแต่ละรายการจะมี asset_automation_type,
ซึ่งกำหนดประเภทการทำงานอัตโนมัติของชิ้นงาน และ asset_automation_status,
ซึ่งแสดงว่าเปิดใช้หรือปิดใช้การทำงานอัตโนมัติ
ระบบจะกำหนดค่าการทำงานอัตโนมัติของชิ้นงานบางรายการที่ระดับแคมเปญ ส่วนรายการอื่นๆ จะตั้งค่าที่ระดับโฆษณาของกลุ่มโฆษณา
การตั้งค่าการทำงานอัตโนมัติของชิ้นงานระดับแคมเปญ
การตั้งค่าเหล่านี้จะกำหนดค่าการทำงานอัตโนมัติของชิ้นงานสำหรับทั้งแคมเปญ โดยการตั้งค่าบางอย่างอาจไม่พร้อมใช้งานสำหรับแคมเปญบางประเภท โปรดดูรายละเอียดเพิ่มเติมใน เอกสารอ้างอิง
| ประเภทการทำงานอัตโนมัติของชิ้นงาน | ประเภทแคมเปญที่รองรับ | ค่าเริ่มต้น |
|---|---|---|
| FINAL_URL_EXPANSION_TEXT_ASSET_AUTOMATION | Performance Max, Search |
เปิดใช้สำหรับ Performance Max และปิดใช้สำหรับ Search หมายเหตุ: การเปิดใช้ Final URL Expansion จะทำให้ Google สร้างชิ้นงานข้อความ (บรรทัดแรกและคำอธิบาย) แบบไดนามิกให้ตรงกับเนื้อหาของหน้า Landing Page ที่เลือกแบบไดนามิก คุณจะเลือกไม่ใช้ฟีเจอร์นี้ไม่ได้หาก Final URL Expansion ทำงานอยู่ ซึ่งแตกต่างจากการทำงานอัตโนมัติของTEXT_ASSET_AUTOMATION (การปรับแต่งข้อความ) มาตรฐาน ซึ่งจะปรับแต่งข้อความโฆษณาทั้งหมดในแคมเปญ |
| GENERATE_ENHANCED_YOUTUBE_VIDEOS | Performance Max | เปิดใช้อยู่ |
| GENERATE_IMAGE_ENHANCEMENT | Performance Max | เปิดใช้สำหรับ Performance Max และปิดใช้สำหรับ Search |
| GENERATE_IMAGE_EXTRACTION | Performance Max |
ค่าควบคุมส่วนขยายรูปภาพแบบไดนามิกระดับบัญชี หมายเหตุ: คุณกำหนดค่าการตั้งค่าระดับบัญชีนี้ได้ในอินเทอร์เฟซเว็บของ Google Ads เท่านั้น |
| TEXT_ASSET_AUTOMATION | Performance Max, Search | เปิดใช้สำหรับ Performance Max และปิดใช้สำหรับ Search |
ข้อมูลโค้ดต่อไปนี้แสดงวิธีตั้งค่าการทำงานอัตโนมัติของชิ้นงานเป็น OPT_IN สำหรับแคมเปญ PMax
Java
// Configures the optional opt-in/out status for asset automation settings. .addAllAssetAutomationSettings(ImmutableList.of( AssetAutomationSetting.newBuilder() .setAssetAutomationType(AssetAutomationType.GENERATE_IMAGE_EXTRACTION) .setAssetAutomationStatus(AssetAutomationStatus.OPTED_IN).build(), AssetAutomationSetting.newBuilder() .setAssetAutomationType( AssetAutomationType.FINAL_URL_EXPANSION_TEXT_ASSET_AUTOMATION) .setAssetAutomationStatus(AssetAutomationStatus.OPTED_IN).build(), AssetAutomationSetting.newBuilder() .setAssetAutomationType(AssetAutomationType.TEXT_ASSET_AUTOMATION) .setAssetAutomationStatus(AssetAutomationStatus.OPTED_IN).build(), AssetAutomationSetting.newBuilder() .setAssetAutomationType(AssetAutomationType.GENERATE_ENHANCED_YOUTUBE_VIDEOS) .setAssetAutomationStatus(AssetAutomationStatus.OPTED_IN).build(), AssetAutomationSetting.newBuilder() .setAssetAutomationType(AssetAutomationType.GENERATE_IMAGE_ENHANCEMENT) .setAssetAutomationStatus(AssetAutomationStatus.OPTED_IN).build()))
C#
campaign.AssetAutomationSettings.AddRange(new[]{ new Campaign.Types.AssetAutomationSetting { AssetAutomationType = AssetAutomationType.GenerateImageExtraction, AssetAutomationStatus = AssetAutomationStatus.OptedIn }, new Campaign.Types.AssetAutomationSetting { AssetAutomationType = AssetAutomationType.FinalUrlExpansionTextAssetAutomation, AssetAutomationStatus = AssetAutomationStatus.OptedIn }, new Campaign.Types.AssetAutomationSetting { AssetAutomationType = AssetAutomationType.TextAssetAutomation, AssetAutomationStatus = AssetAutomationStatus.OptedIn }, new Campaign.Types.AssetAutomationSetting { AssetAutomationType = AssetAutomationType.GenerateEnhancedYoutubeVideos, AssetAutomationStatus = AssetAutomationStatus.OptedIn }, new Campaign.Types.AssetAutomationSetting { AssetAutomationType = AssetAutomationType.GenerateImageEnhancement, AssetAutomationStatus = AssetAutomationStatus.OptedIn }, });
PHP
This example is not yet available in PHP; you can take a look at the other languages.
Python
# Configures the optional opt-in/out status for asset automation settings. for asset_automation_type_enum in [ client.enums.AssetAutomationTypeEnum.GENERATE_IMAGE_EXTRACTION, client.enums.AssetAutomationTypeEnum.FINAL_URL_EXPANSION_TEXT_ASSET_AUTOMATION, client.enums.AssetAutomationTypeEnum.TEXT_ASSET_AUTOMATION, client.enums.AssetAutomationTypeEnum.GENERATE_ENHANCED_YOUTUBE_VIDEOS, client.enums.AssetAutomationTypeEnum.GENERATE_IMAGE_ENHANCEMENT, ]: asset_automattion_setting: Campaign.AssetAutomationSetting = ( client.get_type("Campaign").AssetAutomationSetting() ) asset_automattion_setting.asset_automation_type = ( asset_automation_type_enum ) asset_automattion_setting.asset_automation_status = ( client.enums.AssetAutomationStatusEnum.OPTED_IN ) campaign.asset_automation_settings.append(asset_automattion_setting)
Ruby
# Configures the optional opt-in/out status for asset automation settings. c.asset_automation_settings << client.resource.asset_automation_setting do |aas| aas.asset_automation_type = :GENERATE_IMAGE_EXTRACTION aas.asset_automation_status = :OPTED_IN end c.asset_automation_settings << client.resource.asset_automation_setting do |aas| aas.asset_automation_type = :FINAL_URL_EXPANSION_TEXT_ASSET_AUTOMATION aas.asset_automation_status = :OPTED_IN end c.asset_automation_settings << client.resource.asset_automation_setting do |aas| aas.asset_automation_type = :TEXT_ASSET_AUTOMATION aas.asset_automation_status = :OPTED_IN end c.asset_automation_settings << client.resource.asset_automation_setting do |aas| aas.asset_automation_type = :GENERATE_ENHANCED_YOUTUBE_VIDEOS aas.asset_automation_status = :OPTED_IN end c.asset_automation_settings << client.resource.asset_automation_setting do |aas| aas.asset_automation_type = :GENERATE_IMAGE_ENHANCEMENT aas.asset_automation_status = :OPTED_IN end
Perl
# Configures the optional opt-in/out status for asset automation settings. # When we create the campaign object, we set campaign->{assetAutomationSettings} # equal to $asset_automation_settings. my $asset_automation_settings = []; my $asset_automation_types = [ GENERATE_IMAGE_EXTRACTION, FINAL_URL_EXPANSION_TEXT_ASSET_AUTOMATION, TEXT_ASSET_AUTOMATION, GENERATE_ENHANCED_YOUTUBE_VIDEOS, GENERATE_IMAGE_ENHANCEMENT ]; foreach my $asset_automation_type (@$asset_automation_types) { push @$asset_automation_settings, Google::Ads::GoogleAds::V24::Resources::AssetAutomationSetting->new({ assetAutomationStatus => OPTED_IN, assetAutomationType => $asset_automation_type }); }
curl
การตั้งค่าการทำงานอัตโนมัติของชิ้นงานระดับโฆษณา
การตั้งค่าเหล่านี้จะกำหนดค่าการทำงานอัตโนมัติของชิ้นงานสำหรับโฆษณาเดียว โดยการตั้งค่าบางอย่างอาจไม่พร้อมใช้งานสำหรับประเภทโฆษณาบางประเภท โปรดดูรายละเอียดเพิ่มเติมใน เอกสารอ้างอิง
| ประเภทการทำงานอัตโนมัติของชิ้นงาน | ประเภทโฆษณาที่รองรับ | ค่าเริ่มต้น |
|---|---|---|
| GENERATE_DESIGN_VERSIONS_FOR_IMAGES | DemandGenMultiAssetAd | เปิดใช้อยู่ |
| GENERATE_LANDING_PAGE_PREVIEW | DemandgenVideoResponsiveAd | ปิดใช้ |
| GENERATE_SHORTER_YOUTUBE_VIDEOS | DemandGenVideoResponsiveAd | เปิดใช้อยู่ |
| GENERATE_VERTICAL_YOUTUBE_VIDEOS | DemandGenVideoResponsiveAd | เปิดใช้อยู่ |
| GENERATE_VIDEOS_FROM_OTHER_ASSETS | DemandGenMultiAssetAds | เปิดใช้อยู่ |
หลักเกณฑ์เกี่ยวกับข้อความ
หลักเกณฑ์เกี่ยวกับข้อความช่วยให้คุณปรับแต่งข้อความแบรนด์สำหรับชิ้นงานข้อความที่สร้างขึ้นโดยอัตโนมัติในแคมเปญ Performance Max และ AI Max ได้โดยการระบุการยกเว้นคำและข้อจำกัดเกี่ยวกับข้อความ
หากต้องการใช้หลักเกณฑ์เกี่ยวกับข้อความ ให้ป้อนข้อมูลในช่อง
text_guidelinesของทรัพยากร
Campaignดังนี้
- การยกเว้นคำ: ระบุรายการคำหรือวลีที่ตรงกันซึ่งจะยกเว้น จากชิ้นงานข้อความที่สร้างขึ้น การยกเว้นแต่ละรายการมีความยาวได้ไม่เกิน 30 อักขระ และยกเว้นได้สูงสุด 25 รายการ
- ข้อจำกัดเกี่ยวกับข้อความ: ระบุคำแนะนำแบบอิสระ (รายการละไม่เกิน 300
อักขระ) เพื่อแนะนำการสร้างข้อความด้วย AI คุณระบุข้อจำกัดได้สูงสุด 40 รายการ ระบบจะรองรับเฉพาะ
RESTRICTION_BASED_EXCLUSIONสำหรับประเภทข้อจำกัด