0

我有一个 Wordpress 页面,其中包含餐厅的每周菜单,使用快速餐厅菜单插件构建。

菜单每周更改一次,最长可达 6 周,然后返回第一个菜单并重新开始。

使用的简码是:[erm_menu_fullweek id=11910]

现在,只需在短代码中更改 ID 即可显示下周菜单。

是否有一种 php 方法可以使用 cron 或 WordPress 插件来更改 SQL 中的页面内容以安排其自行运行?

4

1 回答 1

1

虽然使用 WordPress cron 更改帖子内容是可能的,但创建自定义简码以生成定期修改的结束简码更强大。

这使您能够直接从 WordPress 页面/帖子编辑屏幕更改简码标签、参数 (ID)、开始日期、间隔持续时间,而无需触摸任何代码。

使用自定义简码[mm1707_shortcode_rotator]生成您的最终简码。如果将来更改结束短代码或更改要轮换的 ID,这将很有用。如果您的最终简码需要,您还可以在此简码之间包含内容。

示例 1:[mm1707_shortcode_rotator shortcode="erm_menu_fullweek" args="1,2,3,4,5,6,7" start_date="2018-01-08" interval="1 week"]

示例 2:[mm1707_shortcode_rotator shortcode="erm_menu_fullweek" args="1,2,3,4,5,6,7" start_date="2018-01-08" interval="1 week"] some content here [/mm1707_shortcode_rotator]如果您的最终短代码也需要一些内容。

<?php
/**
 * Custom shortcode which generates another supplied shortcode with ID argument swapped per
 * specified time interval.
 *
 * @param  array  $atts {
 *     Array of attributes specifiying shortcode, arguments to rotate and time interval.
 *
 *     @type string $shortcode  Shortcode to execute.
 *     @type string $args       Comma seperated arguments to rotate per interval period.
 *     @type string $start_date Date from which rotation should be counted.
 *     @type string $intereval  Interval for rotation. Expects relative dates.
 *                              See http://php.net/manual/de/datetime.formats.relative.php.
 * }
 * @param  string $content Optional. Content passed to shortcode.
 * @return string|bool          Returns output of supplied shortcode with ID argument
 * as per calculated period or false when $shortcode and $args are not supplied
 */
function mm1707_shortcode_rotator( $atts = [], $content = null ) {
    if ( empty( $atts['shortcode'] ) || empty( $atts['args'] ) ) {
        return false;
    }

    // Normalize attribute keys, lowercase.
    $atts = array_change_key_case( (array) $atts, CASE_LOWER );

    // Convert IDs from string to array.
    $args = explode( ',', $atts['args'] );
    $args = array_map( 'trim', array_filter( $args ) );

    // Override default attributes with user attributes.
    $attributes = shortcode_atts(
        [
            'shortcode'  => '',
            'args'       => array(),
            'start_date' => '',
            'interval'   => '1week', // Expects relative dates. See http://php.net/manual/de/datetime.formats.relative.php.
        ], $atts
    );

    // Get the start date, if empty then first date of current year would be used.
    $start_date = empty( $attributes['start_date'] ) ? new DateTime( '1 Jan' ) : new DateTime( $attributes['start_date'] );

    // Get the rotation interval.
    $rotation_interval = $attributes['interval'];
    $rotation_interval = DateInterval::createFromDateString( $rotation_interval );

    // Create DatePeriod and iterate over it to count ocurrences.
    $rotation_period = new DatePeriod( $start_date, $rotation_interval, new DateTime() );
    $args_count      = count( $args );
    $rotation        = 0;

    foreach ( $rotation_period as $date ) {
        $rotation++;
        if ( $rotation > $args_count - 1 ) {
            $rotation = 0;
        }
    }

    // Build shortcode.
    $shortcode = sprintf( '[%1$s id="%2$s"]', $attributes['shortcode'], $args[ $rotation ] );
    if ( ! empty( $content ) ) {
        $content    = apply_filters( 'the_content', $content );
        $shortcode .= $content . '[/' . $attributes['shortcode'] . ']';
    }

    // Start output & return it.
    return do_shortcode( $shortcode );
}
add_shortcode( 'mm1707_shortcode_rotator', 'mm1707_shortcode_rotator' );

此代码将进入您的主题functions.php文件

注意:此代码已经过测试并且可以完美运行。


更进一步

您可以安全地升级此代码以将参数数组作为字符串传递,而不仅仅是 ID。

例如,您可以即兴逻辑接受多维数组作为args="foo:'bar',id:'2039',color:'#CC000000'|foo:'bar2',id:'1890',color:'#FFF'".

  • 首先解析|以使用explode('|', $args);.
  • 然后简单地做str_replace( array(':',','), array('=', ' '), $args[$rotation] );
  • 更改id="%2$s"%2$s. _$shortcode = "'" . sprintf( '[%1$s id="%2$s"]', $attributes['shortcode'], $args[ $rotation ] );

这将为您提供结束短代码的参数字符串,如[shortcode foo='bar' id='2039' color='#cc000000']when $rotation = 0;

于 2018-01-08T18:02:53.173 回答