這個外掛並未在最新的 3 個 WordPress 主要版本上進行測試。開發者可能不再對這個外掛進行維護或提供技術支援,並可能會與更新版本的 WordPress 產生使用上的相容性問題。

EDD List File Names

描述

This plugin requires Easy Digital Downloads.

Using the included [edd_file_names] shortcode you’ll be able to list a download’s file names (not file paths). This is useful for showing customers what is included when they purchase your product. The shortcode also takes 2 parameters, title and ID. Using the ID you’re able to show a download’s file names from another post/page/download.

Shortcode usage

Basic listing of the current download in an ordered list

[edd_file_names]

Custom title above the list

[edd_file_names title="Files Included"]

Show the download’s files by using it’s ID. Useful when you are also using the [purchase_link] shortcode on another page/post

[edd_file_names id="123" title="Another download's files"]

Modifying the HTML markup

This example shows how you can modify the HTML markup. Heading has been replaced with an <h1> tag, and the list is now an unordered list. Copy and paste the following function into your child theme’s functions.php or a custom plugin:

function sumobi_edd_list_file_names( $html, $title, $download_files ) { 
    ob_start();
    if ( $download_files && is_array( $download_files ) ) : ?>

        <?php if ( $title ) : ?>
        <h1><?php echo $title; ?></h1>
        <?php endif; ?>

        <ul class="edd-file-names">
        <?php foreach ( $download_files as $file ) : ?>
            <li><?php echo $file['name']; ?></li>
        <?php endforeach; ?>
        </ul>

    <?php endif;

    $html = ob_get_clean();
    return $html;
}
add_filter( 'edd_list_file_names', 'sumobi_edd_list_file_names', 10, 3 );

Extensions for Easy Digital Downloads

https://easydigitaldownloads.com/extensions/

Tips for Easy Digital Downloads

http://sumobi.com/blog

Stay up to date

Follow me on Twitter
http://twitter.com/sumobi_

Become a fan on Facebook
http://www.facebook.com/sumobicom

安裝

  1. Unpack the entire contents of this plugin zip file into your wp-content/plugins/ folder locally
  2. Upload to your site
  3. Navigate to wp-admin/plugins.php on your site (your WP Admin plugin page)
  4. Activate this plugin

OR you can just install it with WordPress by going to Plugins >> Add New >> and type this plugin’s name

評價

There are no reviews for this plugin.

貢獻者及開發者

“EDD List File Names” 是一個開源的軟體。以下的人對這個外掛作出了貢獻。

貢獻者

將 EDD List File Names 外掛本地化為台灣繁體中文版。

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄

修改日誌

1.0.1

  • New: Added edd-file-names CSS class on ordered list for easier styling

1.0

  • Initial release