markdown 设置WP / ACF / Timber Twitter分享链接

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 设置WP / ACF / Timber Twitter分享链接相关的知识,希望对你有一定的参考价值。

1.   Enqueue Twitter's sharing script so your link triggers a pop-up window, not a redirect.

   Note: In Radicati 2, you enqueue scripts in lib/register_assets.php
```php
// Twitter sharing popup
wp_enqueue_script('twitter-sharing', "https://platform.twitter.com/widgets.js");
```

2.   Create ACF fields for the options page:

     Twitter Sharing Prefill Message: twitter_prefill
     
     Twitter Handle: twitter_handle

3.   Add this link to your twig template:
```twig
<a class="twitter-sharing-link" href="http://twitter.com/intent/tweet?{% if options['twitter_prefill'] %}text={{ options['twitter_prefill'] }}{% endif %}&=url={{post.link}}{%if options['twitter_handle'] %}&=via={{options['twitter_handle']}}{% endif %}" ><i class="fab fa-fw fa-twitter"></i></a>
```
Note: Just make sure not to use the class: "twitter-share-button" as Twitter's script will take it over and style it into sad twitter ugliness...

以上是关于markdown 设置WP / ACF / Timber Twitter分享链接的主要内容,如果未能解决你的问题,请参考以下文章

带有 ACF 嵌套字段的 WP MetaQuery

php WP ACF多谷歌地图

ACF 字段的 WP 查询过滤器不起作用

php 带ACF的Wp查询复选框

在自定义分类模板中的 WP_Query 期间查询(2)ACF 发布对象

php 使用ACF选项页面的WP全局自定义字段