
內容簡介
詳細的使用說明可在GitHub上找到。
Attachments外掛允許您從WordPress媒體庫中簡單地附件任何數量的項目到文章、頁面和自訂文章類型。
使用附加組件擴展功能
此外掛不直接與您的佈景主題互動,您需要編輯模板檔案。如果您喜歡使用UI,可以看看Attachments UI外掛。
將媒體項目與文章相關聯
Attachments的理念是讓開發人員能夠直接將媒體項目與任何文章相關聯。開發人員通過向文章編輯屏幕添加元框來實現此功能。媒體項目一旦與文章相關聯,您就可以檢索這些附件並使用任何特定的標記來直接在模板檔案中包含它們。
以細節控制附件與佈景主題相結合
Attachments不會自動與您的佈景主題整合。因為Attachments的理念是允許使用開發人員製作的唯一標記將媒體整合到文章中,所以完全由您來整合。最基本的整合包括編輯適當的模板檔案並添加Attachements的呼叫。例如,如果您已經設置Attachments用於文章條目,編輯single.php並在循環中包含以下代碼:
<?php $attachments = new Attachments( 'attachments' ); /* pass the instance name */ ?>
<?php if( $attachments->exist() ) : ?>
<h3>Attachments</h3>
<p>Total Attachments: <?php echo $attachments->total(); ?></p>
<ul>
<?php while( $attachments->get() ) : ?>
<li>
ID: <?php echo $attachments->id(); ?><br />
Type: <?php echo $attachments->type(); ?><br />
Subtype: <?php echo $attachments->subtype(); ?><br />
URL: <?php echo $attachments->url(); ?><br />
Image: <?php echo $attachments->image( 'thumbnail' ); ?><br />
Source: <?php echo $attachments->src( 'full' ); ?><br />
Size: <?php echo $attachments->filesize(); ?><br />
Title Field: <?php echo $attachments->field( 'title' ); ?><br />
Caption Field: <?php echo $attachments->field( 'caption' ); ?>
</li>
<?php endwhile; ?>
</ul>
<?php endif; ?>
該代碼片段將在循環內查找當前文章所定義的所有現有Attachments,並為該Attachment檢索每個項目屬性。使用提供的詳細信息,您可以以任何方式將附加的媒體項目整合到您的文章中。
Attachments的GitHub頁面上還有更多詳細信息。歡迎貢獻!
路線圖
請參閱Attachments的GitHub頁面
用法
詳細的使用說明可在GitHub上找到。
外掛標籤
開發者團隊
📦 歷史版本下載
原文外掛簡介
Extensive usage instructions are available on GitHub
Attachments allows you to simply append any number of items from your WordPress Media Library to Posts, Pages, and Custom Post Types.
Associate Media items with posts
The idea behind Attachments is to give developers the ability to directly associate Media items with any post. This is accomplished by adding a meta box to post edit screens as determined by the developer. Once Media items have been associated with a post, you’re able to retrieve those Attachments and include them directly within your template files using any specific markup you wish.
Integrate Attachments within your theme with fine grained control
Attachments does not automatically integrate itself with your theme. Since the idea behind Attachments is to allow integration of Media within posts using developer-crafted, unique markup, it’s up to you to integrate with your theme. The most basic integration includes editing the appropriate template file and adding your call(s) to Attachments. For example, if you have set up Attachments to be used with your Posts entries, edit single.php to include the following within The Loop:
exist() ) : ?>
Attachments
Total Attachments: total(); ?>
-
get() ) : ?>
-
ID: id(); ?>
Type: type(); ?>
Subtype: subtype(); ?>
URL: url(); ?>
Image: image( 'thumbnail' ); ?>
Source: src( 'full' ); ?>
Size: filesize(); ?>
Title Field: field( 'title' ); ?>
Caption Field: field( 'caption' ); ?>
That snippet will request all of the existing Attachments defined for the current Post within The Loop, and retrieve each itemized property for that Attachment. Using the provided details you’re able to integrate the attached Media items in any way you please.
There is a lot more information on Attachments’ GitHub page. Please contribute!
Roadmap
Please see Attachments on GitHub
Usage
Extensive usage instructions are available on GitHub
