Skip to content
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

Update Excerpt Suggestions documentation links #2928

Merged
merged 2 commits into from
Nov 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ The [Content Helper](https://docs.parse.ly/plugin-content-helper/) is a set of c
- The [Parse.ly Stats Column](https://docs.parse.ly/plugin-content-helper/#h-posts) - Displays published post performance for the last 7 days in Post Lists.
- The [Parse.ly Editor Sidebar](https://docs.parse.ly/plugin-content-helper/#h-editor) - This sidebar is integrated into the WordPress Editor and offers insights about the content currently being edited such as:
- [Title Suggestions](https://docs.wpvip.com/parse-ly/wp-parsely-features/title-suggestions/) - Generates title suggestions for the post/page currently being edited.
- [Excerpt Suggestions](https://docs.wpvip.com/parse-ly/wp-parsely-features/excerpt-generator/) - Generates an excerpt suggestion for the post/page currently being edited.
- [Excerpt Suggestions](https://docs.wpvip.com/parse-ly/wp-parsely-features/excerpt-suggestions/) - Generates an excerpt suggestion for the post/page currently being edited.
- [Smart Linking](https://docs.wpvip.com/parse-ly/wp-parsely-features/smart-linking/) - Automatically adds links to the current content that point to the most relevant and top-performing posts.
- [Related Posts](https://docs.parse.ly/plugin-content-helper/#h-related-posts) - Displays a list of the website’s most successful posts, similar to the post/page currently being edited.
- [Performance Stats](https://docs.parse.ly/plugin-content-helper/#h-see-performance-details) - Displays performance metrics about the content currently being edited.
Expand Down
2 changes: 1 addition & 1 deletion build/content-helper/editor-sidebar.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('react', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-core-data', 'wp-data', 'wp-dom-ready', 'wp-editor', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-plugins', 'wp-primitives', 'wp-url', 'wp-wordcount'), 'version' => 'e582fe60e9900e132791');
<?php return array('dependencies' => array('react', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-core-data', 'wp-data', 'wp-dom-ready', 'wp-editor', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-plugins', 'wp-primitives', 'wp-url', 'wp-wordcount'), 'version' => 'd7059d961c9fe0a71c34');
30 changes: 15 additions & 15 deletions build/content-helper/editor-sidebar.js

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ import {
} from '../../common/content-helper-error';
import { LeafIcon } from '../../common/icons/leaf-icon';
import {
SidebarSettings,
ExcerptSuggestionsSettings as ExcerptSuggestionsSettingsType,
SidebarSettings,
useSettings,
} from '../../common/settings';
import { ExcerptSuggestionsProvider } from './provider';
import { ExcerptSuggestionsSettings } from './component-panel-settings';
import { ExcerptSuggestionsProvider } from './provider';

/**
* Defines the structure of an object that holds excerpt data.
Expand Down Expand Up @@ -242,7 +242,7 @@ export const PostExcerptSuggestions = ( {
<div className="excerpt-suggestions-text">
{ __( 'Use Parse.ly AI to generate a concise, engaging excerpt for your post.', 'wp-parsely' ) }
<Button
href="https://docs.wpvip.com/parse-ly/wp-parsely-features/excerpt-generator/"
href="https://docs.wpvip.com/parse-ly/wp-parsely-features/excerpt-suggestions/"
target="_blank"
variant="link"
rel="noopener"
Expand Down Expand Up @@ -370,7 +370,7 @@ export const PostExcerptSuggestions = ( {

{ isDocumentSettingPanel && (
<Button
href="https://docs.wpvip.com/parse-ly/wp-parsely-features/excerpt-generator/"
href="https://docs.wpvip.com/parse-ly/wp-parsely-features/excerpt-suggestions/"
target="_blank"
variant="link"
rel="noopener"
Expand Down
Loading