Plugin này chưa được cập nhật với 3 phiên bản mới nhất của WordPress. Nó có thể không được hỗ trợ và bảo trì, và có thể xung đột với các phiên bản WordPress mới nhất.

WP Core Contributions Widget

Mô tả

A lot of people write code. A lot of people write WordPress plugins. A lot of people write WordPress themes.

Only a handful of people contribute code back to the core WordPress project. Even fewer contribute documentation to the WordPress Codex.

Take a second to show off the patches that you’ve submitted that have made it into core and the updates you’ve submitted to the Codex. It’s a great way to highlight your coding credentials and back up your resume.

Ảnh màn hình

  • Example widget showing the default markup on the Twenty Eleven theme and contributions by ericmann.
  • Example widget showing the default Codex contributions widget on the Twenty Eleven theme (contributions by ericmann.

Cài đặt

Manual Installation

  1. Upload the entire wp-core-contributions-widget to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Add the WP Core Contributions Widget to your sidebar (be sure to enter your Trac username!)
  4. Add the WP Codex Contributions Widget to your sidebar (be sure to enter your Codex username!)

Hỏi đáp

Not all of my Trac patches show up, what’s wrong?

The system currently only parses the first page of search results. So your latest 10 patches will always be displayed.

How can I customize the templates?

Take a look at the default templates in the `/inc/1 directory that the widgets display by default:

  • wp-core-contributions-widget-template.php
  • wp-codex-contributions-widget-template.php

However, you can place a custom template in your theme directory to override this. Just place a wp-core-contributions-widget-template.php file in your theme directory to override the defaults.

Remember, all of the parsed Trac tickets are contained in the $items array. The total count of the user’s contributions is contained in the $total variable. Aside from that, use any variables you like.

The Trac $items array is a collection of associative arrays each containing:

  • link -> A link to the actual Trac changeset.
  • changeset -> The ID of the changeset.
  • description -> The commit message for the changeset.
  • ticket -> The ID of the ticket fixed by the patch.

The parsed Codex pages are also contained in an $items array. The total count of the user’s contributions is contained in the $total variable.

The Codex $items array is a collection of associative arrays, each containing:

  • title -> Title of the page being changed.
  • description -> Description of the change made.
  • revision -> Revision number according to the Codex wiki (used to create a link).
  • function_ref -> Boolean flag regarding whether or not the change was to a function reference. Removes “Function Reference/” from the page title.

Đánh giá

There are no reviews for this plugin.

Người đóng góp & Lập trình viên

“WP Core Contributions Widget” là mã nguồn mở. Những người sau đã đóng góp vào plugin này.

Những người đóng góp

Nhật ký thay đổi

1.2.2

  • Clean up query string generation with Trac API
  • Add German translation

1.2.1

  • Switch to PHP return for Codex data
  • Shorten page names when returned from Codex
  • Add title tags to Codex links for context

1.2

  • Add Codex contributions widget

1.1

  • Update regex to support matching “see #{ticket}”
  • Fix undefined index warnings on first activation

1.0

  • Update translations
  • Allow users to change the display count of the widget.

0.4

  • Add a link to the full Trac results with a total result count listed.

0.3

  • Better formatting for widget template
  • Handle changesets not bound to tickets
  • Better i18n support

0.2

  • Added text domain
  • Improved RegEx parsing
  • Customizable output templates

0.1

  • First release