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>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 求会6sv辐射传输模型,辅导(可py6s🙏🏻有偿
  • ¥15 .xla后缀的文件拖到excel里什么内容也没有怎么办
  • ¥20 Workbench中Mechanical打不开、闪退是什么原因?
  • ¥240 MapReduce应用实践 学生课程
  • ¥15 hlss视频显示AUTHORITY_INVALID
  • ¥15 MAX9296A+MAX96717,美信gmsl解串有人做过吗?
  • ¥15 求帮我解决一下inode 爆满的问题(有偿)
  • ¥15 关于#vscode#的问题:布料滤波算法中C++实现pcl在Vscode中pcl库没有#include <pcl>
  • ¥15 fpga:ov5640采集tft显示
  • ¥100 python怎么连接wxSQLite3加密的数据库