donglianjiang9321 2016-09-13 16:23 采纳率: 0%
浏览 30
已采纳

如何在wordpress帖子中的文本中使用php变量

I have a file with urls to websites:

$var1 = www.google1.com/asdfsd
$var2 = www.google2.com/fdfff

And now I want to use these variables in text in posts, for example:

any text <a href="<?php $var1 ?>">my sample link</a>

I cannot use wordpress plugins to insert php in post. How can I include file with my variables to wordpress and then use these variables in text ?

  • 写回答

1条回答 默认 最新

  • dongzhabo2796 2016-09-13 16:26
    关注

    You may need to look at using shortcodes, for example in your themes functions.php file you can do this:

    add_shortcode('var1', function($atts) {
       return 'www.google1.com/asdfsd';
    }
    
    add_shortcode('var2', function($atts) {
       return 'www.google1.com/fdfff';
    }
    

    Then in your text view you can do the below:

    any text <a href="[var1]">my sample link</a>
    

    Alternatively, you could setup one shortcode for all links and pass in a parameter to the shortcode which could be done like so:

    add_shortcode('link', function($atts) {
       switch($atts['type']):
          case 1: return 'www.google1.com/asdfsd'; break;
          case 2: return 'www.google1.com/fdfff'; break;
          default: return '';
       endswitch;
    }
    

    And include in your pages like so:

    any text <a href="[link type='2']">my sample link</a>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 安装svn网络有问题怎么办
  • ¥15 Python爬取指定微博话题下的内容,保存为txt
  • ¥15 vue2登录调用后端接口如何实现
  • ¥65 永磁型步进电机PID算法
  • ¥15 sqlite 附加(attach database)加密数据库时,返回26是什么原因呢?
  • ¥88 找成都本地经验丰富懂小程序开发的技术大咖
  • ¥15 如何处理复杂数据表格的除法运算
  • ¥15 如何用stc8h1k08的片子做485数据透传的功能?(关键词-串口)
  • ¥15 有兄弟姐妹会用word插图功能制作类似citespace的图片吗?
  • ¥15 latex怎么处理论文引理引用参考文献