“tag meta OG tidak berfungsi” Kode Jawaban

tag meta OG tidak berfungsi

# config/meta.yml

meta_product_name: "Product Name"
meta_title: "Product name - Product tagline"
meta_description: "Relevant description"
meta_image: "cover.png" # should exist in `app/assets/images/`
twitter_account: "@product_twitter_account"   # required for Twitter Cards
Thoughtless Tuatara

tag meta OG tidak berfungsi

<!-- app/views/offers/show.html.erb -->
<% content_for :meta_title, "#{@offer.name} is on #{DEFAULT_META["meta_product_name"]}" %>
<% content_for :meta_description, @offer.description %>
<% content_for :meta_image, cl_image_path(@offer.photo.path) %>
Thoughtless Tuatara

tag meta OG tidak berfungsi

heroku config:set DOMAIN=www.my_product.com
Thoughtless Tuatara

tag meta OG tidak berfungsi

# app/controllers/application_controller.rb

def default_url_options
  { host: ENV["DOMAIN"] || "localhost:3000" }
end
Thoughtless Tuatara

tag meta OG tidak berfungsi

# config/initializers/default_meta.rb

# Initialize default meta tags.
DEFAULT_META = YAML.load_file(Rails.root.join("config/meta.yml"))
Thoughtless Tuatara

Jawaban yang mirip dengan “tag meta OG tidak berfungsi”

Pertanyaan yang mirip dengan “tag meta OG tidak berfungsi”

Lebih banyak jawaban terkait untuk “tag meta OG tidak berfungsi” di Ruby

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya