### Example of Duplicate Post GUIDs on Dual HTTP/HTTPS Sites Source: https://github.com/radgeek/feedwordpress/blob/master/readme.txt Illustrates how duplicate post GUIDs can appear on sites accessible via both HTTP and HTTPS. This is a common issue that FeedWordPress aims to normalize. ```text http://www.example.com/?guid=c1cd28da39e8d7babcf6499983aca545 https://www.example.com/?guid=c1cd28da39e8d7babcf6499983aca545 ``` -------------------------------- ### PHP 7 Compatibility: Constructor Convention Source: https://github.com/radgeek/feedwordpress/blob/master/readme.txt Ensures all classes use the __construct() convention for constructors, a standard practice for PHP 7 compatibility. This replaces older constructor syntaxes. ```php class MyClass { public function __construct() { // Constructor logic } } ``` -------------------------------- ### Configure Unfamiliar Author Handling Source: https://github.com/radgeek/feedwordpress/blob/master/readme.txt Set the default behavior for unfamiliar authors in FeedWordPress syndication. Options include creating new authors, assigning to a default author, or filtering out posts from unfamiliar authors. ```text unfamiliar author: (create|default|filter) ``` -------------------------------- ### Configure Unfamiliar Category Handling Source: https://github.com/radgeek/feedwordpress/blob/master/readme.txt Set the default behavior for unfamiliar categories in FeedWordPress syndication. Options include creating new categories, dropping unfamiliar categories, or filtering posts unless they match a familiar category. ```text unfamiliar categories: (create|default|filter) ``` -------------------------------- ### WordPress Theme Template Tags for Syndication Source: https://github.com/radgeek/feedwordpress/blob/master/readme.txt This PHP code snippet demonstrates how to conditionally display syndication information within a WordPress theme's template files. It's useful for showing bylines and original source links for syndicated posts. ```php
``` -------------------------------- ### Filter Feed by Author Source: https://github.com/radgeek/feedwordpress/blob/master/readme.txt Apply a specific author filter to a single feed by adding this setting to the feed's Link Notes. Posts not by the specified author will be discarded for this feed only. ```text unfamiliar author: filter ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.