-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v0.3.9 - Bugfixes & updates #32
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
joshuadavidnelson
force-pushed
the
develop
branch
from
December 26, 2023 18:10
b39704c
to
8dcc564
Compare
joshuadavidnelson
force-pushed
the
develop
branch
from
January 13, 2024 05:26
6d14177
to
01b47b2
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Updating some deprecated functions and addressing some bugs.
Update Includes:
filter_input
, using native WP functions for escaping & getting query var. Fixes another issue, where archived posts couldn't be trashed (Closes Move archived posts to trash #35)aps_archived_label_string
filter to modify the "Archived" string used for the status label throughout the plugin.aps_title_separator
andaps_title_label
to filter the post title separator and label. It defaults to 'Archived' with a:
separator as a prefix to the content title. Disable the title label entirely by usingadd_filter( 'aps_title_prefix', '__return_false' );
in yourfunctions.php
file or custom plugin file. Closes Allow changing of archived post prefix/label on frontend #21aps_title_label_before
filter, defaults totrue
- passfalse
to have the label appear after the title instead of before it, in which case it appears as "- Archived." This change along with the label string filter above closes Can I output a tag on the side of archived post titles #31