php 动态添加当前域名到链接[重复]

o8x7eapl  于 2023-04-19  发布在  PHP
关注(0)|答案(1)|浏览(118)

此问题已在此处有答案

Get current domain(9个回答)
昨天关门了。
我目前的代码显示在任何WP网站的前端链接的图像,我想在年底动态更改链接插入当前域只,而不是完整的URL。
我目前正在使用下面的代码,但找不到一种方法来获得域只显示在一个设置域的末尾动态。如下图所示,“CURRENTDOMAINHERE”应该显示当前域,没有https://,没有任何目录。例如:https://example.com/currentdomain.com

<?php
/**
 * Add image to the bottom left of the frontend of the website
 */
function cwpai_add_image_to_frontend() {
    ?>
    <style>
        #image {
            position: fixed;
            bottom: 1em;
            left: 1em;
            z-index: 9999;
            width: 100px;
        }
    </style>
    <a href="https://example.com/CURRENTDOMAINHERE" id="image">
        <img src="https://imagesrc.com/image.png" alt="image">
    </a>
    <?php
}
add_action( 'wp_footer', 'cwpai_add_image_to_frontend' );
s4chpxco

s4chpxco1#

<?php
/**
 * Add image to the bottom left of the frontend of the website
 */
function cwpai_add_image_to_frontend() {
var=dynamic_URL;

    ?>
    <style>
        #image {
            position: fixed;
            bottom: 1em;
            left: 1em;
            z-index: 9999;
            width: 100px;
        }
    </style>
    <a href="https://example.com/<? echo var; ?>" id="image">
        <img src="https://imagesrc.com/image.png" alt="image">
    </a>
    <?php
}
add_action( 'wp_footer', 'cwpai_add_image_to_frontend' );

链接动态URL的方法有很多种,其中一种方法是在函数调用时传递该变量,然后在<a>标记内绑定。或者您只需设置一个变量并将其打印在www.example.com之后example.com

相关问题