0

我想为最近的帖子创建一个简单的 Wordpress 短代码,以便在帖子中使用它。

我知道创建简码的基本步骤:

1-我打开 WP 主题“functions.php”文件并包含在同一目录中创建的新自定义文件,我将其命名为“custom-shortcode.php”

2-在“custom-shortcode.php”中,我编写了实际代码:

 <?php

     // Shortcode function
    function custom_shortcode() {

        // Use WP recent posts function with default values return
        return php wp_get_recent_posts( $args, $output );
    }
    // Add shortcode (WP function)
    add_shortcode( 'recent-post', 'custom_shortcode' );


?>

我想使用 wp 默认功能来获取最近的帖子,我的代码可以工作吗?我想用最少的代码和默认值返回简码,这样我就可以专注于学习如何制作自己的简码。

4

1 回答 1

0

用于 shortcode_atts(array(制作您的自定义样式..

你可以关注,http://codex.wordpress.org/Shortcode_API

于 2013-10-09T00:57:07.150 回答