在推特我的 Wordpress post 时,如何让短代码输出出现而不是短代码文本?

When Tweeting my Wordpress post, how to get shortcode output to appear instead of shortcode text?

我在我的 WordPress 网站上使用短代码来帮助显示来自 BibTeX 文件的文章的参考信息。例如,my post 顶部的文章信息就是这样生成的,使用形式为 [bibtex key="id"] 的简码,其中 id 是 BibTeX 文件中的参考 ID。我正在使用 papercite 插件。

但是,当我发推 post 时,使用上面的 URL,我得到的是短代码文本本身,而不是短代码输出。参见:

https://twitter.com/JDHamkins/status/1306124193357074433

为什么 Twitter 在此处使用简码文本,我如何让它改用输出文本?

这是因为 Twitter 在 header 中使用了 <meta property="og:..."> 标签,而不是使用页面文本:

<!-- Jetpack Open Graph Tags -->
<meta property="og:type" content="article" />
<meta property="og:title" content="Categorical large cardinals and the tension between categoricity and set-theoretic reflection" />
<meta property="og:url" content="http://jdh.hamkins.org/categorical-large-cardinals/" />
<meta property="og:description" content="[bibtex key=&#8221;HamkinsSolberg:Categorical-large-cardinals&#8221;]" />
<meta property="article:published_time" content="2020-09-16T06:50:00+00:00" />
<meta property="article:modified_time" content="2020-09-16T06:50:04+00:00" />
<meta property="og:site_name" content="Joel David Hamkins" />
<meta property="og:image" content="http://jdh.hamkins.org/wp-content/uploads/Categorical-cardinals-Venn-diagram.jpg" />
<meta property="og:image:width" content="504" />
<meta property="og:image:height" content="306" />
<meta property="og:locale" content="en_US" />
<meta name="twitter:site" content="@JDHamkins" />
<meta name="twitter:text:title" content="Categorical large cardinals and the tension between categoricity and set-theoretic reflection" />
<meta name="twitter:card" content="summary" />

JetPack 提供了一些帮助 — https://jetpack.com/tag/open-graph/ — 关于如何手动更改其开放图形插件的功能,但这可能需要一些工作

如果您查看来源 HTML,它有行

<!-- Jetpack Open Graph Tags -->
...
<meta property="og:description" content="[bibtex key=&#8221;HamkinsSolberg:Categorical-large-cardinals&#8221;]" />
...
<!-- End Jetpack Open Graph Tags -->

看来 Jetpack WP 插件不处理短代码。

我建议在 post 的顶部 [bibtex] 行之前添加一个介绍性句子。就像摘要的 1 句话摘要?

更新:显然可以使用 Yoast SEO 插件来解决问题,参见 https://randomneuronsfiring.com/jetpack-publicize-setting-the-image-and-text-shown-on-twitter-and-facebook/