PHP 短代码

Sheeraz Gul 2022年7月18日
PHP 短代码

短代码 用于在 WordPress 上轻松扩展网站。本教程演示了如何在 PHP 中使用 shortcode

PHP 短代码

短代码 用于使用已开发的组件或功能。我们可以在 WordPress 的 PHP 代码中的任何地方使用该功能组件。

在 PHP 中应用 shortcode 的语法是:

<?php echo do_shortcode( '[shortcode]' ); ?>

上面的 shortcode 将是你要包含在代码中的组件的 shortcode。让我们尝试使用 WordPress 和 PHP 添加一个短代码。

请按照以下步骤操作。

  • 首先,登录 WordPress 或注册。
  • 下一步是安装插件,例如 MetaSlider

    短代码元滑块

  • 安装插件后,我们可以从右侧菜单中打开插件,然后在左侧的如何使用下找到短代码。这个插件的短代码是:
    [metaslider id = "9"]
    

    PHP 短代码元滑块

  • 现在,我们可以在方法 do_shortcode() 中使用这个 shortcode 来在任何地方使用滑块,主要用于标题。
    <?php echo do_shortcode( '[metaslider id = "9"]' ); ?>
    
  • 上面的代码将在写入位置显示滑块。此滑块的输出为:

    PHP 短代码 Metaslider 输出

那里有无数的插件,其中许多提供短代码。我们可以在我们的代码中使用这些短代码来消除大而复杂的代码结构。

Author: Sheeraz Gul
Sheeraz Gul avatar Sheeraz Gul avatar

Sheeraz is a Doctorate fellow in Computer Science at Northwestern Polytechnical University, Xian, China. He has 7 years of Software Development experience in AI, Web, Database, and Desktop technologies. He writes tutorials in Java, PHP, Python, GoLang, R, etc., to help beginners learn the field of Computer Science.

LinkedIn Facebook