Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93

Warning: Undefined array key "page_file_edit_line" in /home/sportsfever/public_html/filemanger/edit_text_line.php on line 32
/home/sportsfe.../httpdocs/clone/wp-inclu.../js/dist
File: edit-post.js
const onNavigateToEntityRecord = (0,external_wp_element_namespaceObject.useCallback)(params => {
[3000] Fix | Delete
dispatch({
[3001] Fix | Delete
type: 'push',
[3002] Fix | Delete
post: {
[3003] Fix | Delete
postId: params.postId,
[3004] Fix | Delete
postType: params.postType
[3005] Fix | Delete
},
[3006] Fix | Delete
// Save the current rendering mode so we can restore it when navigating back.
[3007] Fix | Delete
previousRenderingMode: getRenderingMode()
[3008] Fix | Delete
});
[3009] Fix | Delete
setRenderingMode(defaultRenderingMode);
[3010] Fix | Delete
}, [getRenderingMode, setRenderingMode, defaultRenderingMode]);
[3011] Fix | Delete
const onNavigateToPreviousEntityRecord = (0,external_wp_element_namespaceObject.useCallback)(() => {
[3012] Fix | Delete
dispatch({
[3013] Fix | Delete
type: 'pop'
[3014] Fix | Delete
});
[3015] Fix | Delete
if (previousRenderingMode) {
[3016] Fix | Delete
setRenderingMode(previousRenderingMode);
[3017] Fix | Delete
}
[3018] Fix | Delete
}, [setRenderingMode, previousRenderingMode]);
[3019] Fix | Delete
return {
[3020] Fix | Delete
currentPost: post,
[3021] Fix | Delete
onNavigateToEntityRecord,
[3022] Fix | Delete
onNavigateToPreviousEntityRecord: postHistory.length > 1 ? onNavigateToPreviousEntityRecord : undefined
[3023] Fix | Delete
};
[3024] Fix | Delete
}
[3025] Fix | Delete
[3026] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@wordpress/edit-post/build-module/editor.js
[3027] Fix | Delete
/**
[3028] Fix | Delete
* WordPress dependencies
[3029] Fix | Delete
*/
[3030] Fix | Delete
[3031] Fix | Delete
[3032] Fix | Delete
[3033] Fix | Delete
[3034] Fix | Delete
[3035] Fix | Delete
[3036] Fix | Delete
[3037] Fix | Delete
/**
[3038] Fix | Delete
* Internal dependencies
[3039] Fix | Delete
*/
[3040] Fix | Delete
[3041] Fix | Delete
[3042] Fix | Delete
[3043] Fix | Delete
[3044] Fix | Delete
[3045] Fix | Delete
[3046] Fix | Delete
[3047] Fix | Delete
const {
[3048] Fix | Delete
ExperimentalEditorProvider
[3049] Fix | Delete
} = unlock(external_wp_editor_namespaceObject.privateApis);
[3050] Fix | Delete
function Editor({
[3051] Fix | Delete
postId: initialPostId,
[3052] Fix | Delete
postType: initialPostType,
[3053] Fix | Delete
settings,
[3054] Fix | Delete
initialEdits,
[3055] Fix | Delete
...props
[3056] Fix | Delete
}) {
[3057] Fix | Delete
const {
[3058] Fix | Delete
currentPost,
[3059] Fix | Delete
onNavigateToEntityRecord,
[3060] Fix | Delete
onNavigateToPreviousEntityRecord
[3061] Fix | Delete
} = useNavigateToEntityRecord(initialPostId, initialPostType, 'post-only');
[3062] Fix | Delete
const {
[3063] Fix | Delete
post,
[3064] Fix | Delete
template
[3065] Fix | Delete
} = (0,external_wp_data_namespaceObject.useSelect)(select => {
[3066] Fix | Delete
var _getPostType$viewable;
[3067] Fix | Delete
const {
[3068] Fix | Delete
getEditedPostTemplate
[3069] Fix | Delete
} = select(store);
[3070] Fix | Delete
const {
[3071] Fix | Delete
getEntityRecord,
[3072] Fix | Delete
getPostType,
[3073] Fix | Delete
canUser
[3074] Fix | Delete
} = select(external_wp_coreData_namespaceObject.store);
[3075] Fix | Delete
const {
[3076] Fix | Delete
getEditorSettings
[3077] Fix | Delete
} = select(external_wp_editor_namespaceObject.store);
[3078] Fix | Delete
const postObject = getEntityRecord('postType', currentPost.postType, currentPost.postId);
[3079] Fix | Delete
const supportsTemplateMode = getEditorSettings().supportsTemplateMode;
[3080] Fix | Delete
const isViewable = (_getPostType$viewable = getPostType(currentPost.postType)?.viewable) !== null && _getPostType$viewable !== void 0 ? _getPostType$viewable : false;
[3081] Fix | Delete
const canViewTemplate = canUser('read', 'templates');
[3082] Fix | Delete
return {
[3083] Fix | Delete
template: supportsTemplateMode && isViewable && canViewTemplate && currentPost.postType !== 'wp_template' ? getEditedPostTemplate() : null,
[3084] Fix | Delete
post: postObject
[3085] Fix | Delete
};
[3086] Fix | Delete
}, [currentPost.postType, currentPost.postId]);
[3087] Fix | Delete
const editorSettings = (0,external_wp_element_namespaceObject.useMemo)(() => ({
[3088] Fix | Delete
...settings,
[3089] Fix | Delete
onNavigateToEntityRecord,
[3090] Fix | Delete
onNavigateToPreviousEntityRecord,
[3091] Fix | Delete
defaultRenderingMode: 'post-only'
[3092] Fix | Delete
}), [settings, onNavigateToEntityRecord, onNavigateToPreviousEntityRecord]);
[3093] Fix | Delete
const initialPost = (0,external_wp_element_namespaceObject.useMemo)(() => {
[3094] Fix | Delete
return {
[3095] Fix | Delete
type: initialPostType,
[3096] Fix | Delete
id: initialPostId
[3097] Fix | Delete
};
[3098] Fix | Delete
}, [initialPostType, initialPostId]);
[3099] Fix | Delete
if (!post) {
[3100] Fix | Delete
return null;
[3101] Fix | Delete
}
[3102] Fix | Delete
return /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_components_namespaceObject.SlotFillProvider, {
[3103] Fix | Delete
children: /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsxs)(ExperimentalEditorProvider, {
[3104] Fix | Delete
settings: editorSettings,
[3105] Fix | Delete
post: post,
[3106] Fix | Delete
initialEdits: initialEdits,
[3107] Fix | Delete
useSubRegistry: false,
[3108] Fix | Delete
__unstableTemplate: template,
[3109] Fix | Delete
...props,
[3110] Fix | Delete
children: [/*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsxs)(external_wp_editor_namespaceObject.ErrorBoundary, {
[3111] Fix | Delete
children: [/*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_commands_namespaceObject.CommandMenu, {}), /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(EditorInitialization, {}), /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(layout, {
[3112] Fix | Delete
initialPost: initialPost
[3113] Fix | Delete
})]
[3114] Fix | Delete
}), /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_editor_namespaceObject.PostLockedModal, {})]
[3115] Fix | Delete
})
[3116] Fix | Delete
});
[3117] Fix | Delete
}
[3118] Fix | Delete
/* harmony default export */ const editor = (Editor);
[3119] Fix | Delete
[3120] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@wordpress/edit-post/build-module/deprecated.js
[3121] Fix | Delete
/**
[3122] Fix | Delete
* WordPress dependencies
[3123] Fix | Delete
*/
[3124] Fix | Delete
[3125] Fix | Delete
[3126] Fix | Delete
[3127] Fix | Delete
[3128] Fix | Delete
/**
[3129] Fix | Delete
* Internal dependencies
[3130] Fix | Delete
*/
[3131] Fix | Delete
[3132] Fix | Delete
[3133] Fix | Delete
const {
[3134] Fix | Delete
PluginPostExcerpt
[3135] Fix | Delete
} = unlock(external_wp_editor_namespaceObject.privateApis);
[3136] Fix | Delete
const isSiteEditor = (0,external_wp_url_namespaceObject.getPath)(window.location.href)?.includes('site-editor.php');
[3137] Fix | Delete
const deprecateSlot = name => {
[3138] Fix | Delete
external_wp_deprecated_default()(`wp.editPost.${name}`, {
[3139] Fix | Delete
since: '6.6',
[3140] Fix | Delete
alternative: `wp.editor.${name}`
[3141] Fix | Delete
});
[3142] Fix | Delete
};
[3143] Fix | Delete
[3144] Fix | Delete
/* eslint-disable jsdoc/require-param */
[3145] Fix | Delete
/**
[3146] Fix | Delete
* @see PluginBlockSettingsMenuItem in @wordpress/editor package.
[3147] Fix | Delete
*/
[3148] Fix | Delete
function PluginBlockSettingsMenuItem(props) {
[3149] Fix | Delete
if (isSiteEditor) {
[3150] Fix | Delete
return null;
[3151] Fix | Delete
}
[3152] Fix | Delete
deprecateSlot('PluginBlockSettingsMenuItem');
[3153] Fix | Delete
return /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_editor_namespaceObject.PluginBlockSettingsMenuItem, {
[3154] Fix | Delete
...props
[3155] Fix | Delete
});
[3156] Fix | Delete
}
[3157] Fix | Delete
[3158] Fix | Delete
/**
[3159] Fix | Delete
* @see PluginDocumentSettingPanel in @wordpress/editor package.
[3160] Fix | Delete
*/
[3161] Fix | Delete
function PluginDocumentSettingPanel(props) {
[3162] Fix | Delete
if (isSiteEditor) {
[3163] Fix | Delete
return null;
[3164] Fix | Delete
}
[3165] Fix | Delete
deprecateSlot('PluginDocumentSettingPanel');
[3166] Fix | Delete
return /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_editor_namespaceObject.PluginDocumentSettingPanel, {
[3167] Fix | Delete
...props
[3168] Fix | Delete
});
[3169] Fix | Delete
}
[3170] Fix | Delete
[3171] Fix | Delete
/**
[3172] Fix | Delete
* @see PluginMoreMenuItem in @wordpress/editor package.
[3173] Fix | Delete
*/
[3174] Fix | Delete
function PluginMoreMenuItem(props) {
[3175] Fix | Delete
if (isSiteEditor) {
[3176] Fix | Delete
return null;
[3177] Fix | Delete
}
[3178] Fix | Delete
deprecateSlot('PluginMoreMenuItem');
[3179] Fix | Delete
return /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_editor_namespaceObject.PluginMoreMenuItem, {
[3180] Fix | Delete
...props
[3181] Fix | Delete
});
[3182] Fix | Delete
}
[3183] Fix | Delete
[3184] Fix | Delete
/**
[3185] Fix | Delete
* @see PluginPrePublishPanel in @wordpress/editor package.
[3186] Fix | Delete
*/
[3187] Fix | Delete
function PluginPrePublishPanel(props) {
[3188] Fix | Delete
if (isSiteEditor) {
[3189] Fix | Delete
return null;
[3190] Fix | Delete
}
[3191] Fix | Delete
deprecateSlot('PluginPrePublishPanel');
[3192] Fix | Delete
return /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_editor_namespaceObject.PluginPrePublishPanel, {
[3193] Fix | Delete
...props
[3194] Fix | Delete
});
[3195] Fix | Delete
}
[3196] Fix | Delete
[3197] Fix | Delete
/**
[3198] Fix | Delete
* @see PluginPostPublishPanel in @wordpress/editor package.
[3199] Fix | Delete
*/
[3200] Fix | Delete
function PluginPostPublishPanel(props) {
[3201] Fix | Delete
if (isSiteEditor) {
[3202] Fix | Delete
return null;
[3203] Fix | Delete
}
[3204] Fix | Delete
deprecateSlot('PluginPostPublishPanel');
[3205] Fix | Delete
return /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_editor_namespaceObject.PluginPostPublishPanel, {
[3206] Fix | Delete
...props
[3207] Fix | Delete
});
[3208] Fix | Delete
}
[3209] Fix | Delete
[3210] Fix | Delete
/**
[3211] Fix | Delete
* @see PluginPostStatusInfo in @wordpress/editor package.
[3212] Fix | Delete
*/
[3213] Fix | Delete
function PluginPostStatusInfo(props) {
[3214] Fix | Delete
if (isSiteEditor) {
[3215] Fix | Delete
return null;
[3216] Fix | Delete
}
[3217] Fix | Delete
deprecateSlot('PluginPostStatusInfo');
[3218] Fix | Delete
return /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_editor_namespaceObject.PluginPostStatusInfo, {
[3219] Fix | Delete
...props
[3220] Fix | Delete
});
[3221] Fix | Delete
}
[3222] Fix | Delete
[3223] Fix | Delete
/**
[3224] Fix | Delete
* @see PluginSidebar in @wordpress/editor package.
[3225] Fix | Delete
*/
[3226] Fix | Delete
function PluginSidebar(props) {
[3227] Fix | Delete
if (isSiteEditor) {
[3228] Fix | Delete
return null;
[3229] Fix | Delete
}
[3230] Fix | Delete
deprecateSlot('PluginSidebar');
[3231] Fix | Delete
return /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_editor_namespaceObject.PluginSidebar, {
[3232] Fix | Delete
...props
[3233] Fix | Delete
});
[3234] Fix | Delete
}
[3235] Fix | Delete
[3236] Fix | Delete
/**
[3237] Fix | Delete
* @see PluginSidebarMoreMenuItem in @wordpress/editor package.
[3238] Fix | Delete
*/
[3239] Fix | Delete
function PluginSidebarMoreMenuItem(props) {
[3240] Fix | Delete
if (isSiteEditor) {
[3241] Fix | Delete
return null;
[3242] Fix | Delete
}
[3243] Fix | Delete
deprecateSlot('PluginSidebarMoreMenuItem');
[3244] Fix | Delete
return /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(external_wp_editor_namespaceObject.PluginSidebarMoreMenuItem, {
[3245] Fix | Delete
...props
[3246] Fix | Delete
});
[3247] Fix | Delete
}
[3248] Fix | Delete
[3249] Fix | Delete
/**
[3250] Fix | Delete
* @see PluginPostExcerpt in @wordpress/editor package.
[3251] Fix | Delete
*/
[3252] Fix | Delete
function __experimentalPluginPostExcerpt() {
[3253] Fix | Delete
if (isSiteEditor) {
[3254] Fix | Delete
return null;
[3255] Fix | Delete
}
[3256] Fix | Delete
external_wp_deprecated_default()('wp.editPost.__experimentalPluginPostExcerpt', {
[3257] Fix | Delete
since: '6.6',
[3258] Fix | Delete
hint: 'Core and custom panels can be access programmatically using their panel name.',
[3259] Fix | Delete
link: 'https://developer.wordpress.org/block-editor/reference-guides/slotfills/plugin-document-setting-panel/#accessing-a-panel-programmatically'
[3260] Fix | Delete
});
[3261] Fix | Delete
return PluginPostExcerpt;
[3262] Fix | Delete
}
[3263] Fix | Delete
[3264] Fix | Delete
/* eslint-enable jsdoc/require-param */
[3265] Fix | Delete
[3266] Fix | Delete
;// CONCATENATED MODULE: ./node_modules/@wordpress/edit-post/build-module/index.js
[3267] Fix | Delete
/**
[3268] Fix | Delete
* WordPress dependencies
[3269] Fix | Delete
*/
[3270] Fix | Delete
[3271] Fix | Delete
[3272] Fix | Delete
[3273] Fix | Delete
[3274] Fix | Delete
[3275] Fix | Delete
[3276] Fix | Delete
[3277] Fix | Delete
[3278] Fix | Delete
[3279] Fix | Delete
/**
[3280] Fix | Delete
* Internal dependencies
[3281] Fix | Delete
*/
[3282] Fix | Delete
[3283] Fix | Delete
[3284] Fix | Delete
[3285] Fix | Delete
const {
[3286] Fix | Delete
BackButton: __experimentalMainDashboardButton
[3287] Fix | Delete
} = unlock(external_wp_editor_namespaceObject.privateApis);
[3288] Fix | Delete
[3289] Fix | Delete
/**
[3290] Fix | Delete
* Initializes and returns an instance of Editor.
[3291] Fix | Delete
*
[3292] Fix | Delete
* @param {string} id Unique identifier for editor instance.
[3293] Fix | Delete
* @param {string} postType Post type of the post to edit.
[3294] Fix | Delete
* @param {Object} postId ID of the post to edit.
[3295] Fix | Delete
* @param {?Object} settings Editor settings object.
[3296] Fix | Delete
* @param {Object} initialEdits Programmatic edits to apply initially, to be
[3297] Fix | Delete
* considered as non-user-initiated (bypass for
[3298] Fix | Delete
* unsaved changes prompt).
[3299] Fix | Delete
*/
[3300] Fix | Delete
function initializeEditor(id, postType, postId, settings, initialEdits) {
[3301] Fix | Delete
const isMediumOrBigger = window.matchMedia('(min-width: 782px)').matches;
[3302] Fix | Delete
const target = document.getElementById(id);
[3303] Fix | Delete
const root = (0,external_wp_element_namespaceObject.createRoot)(target);
[3304] Fix | Delete
(0,external_wp_data_namespaceObject.dispatch)(external_wp_preferences_namespaceObject.store).setDefaults('core/edit-post', {
[3305] Fix | Delete
fullscreenMode: true,
[3306] Fix | Delete
themeStyles: true,
[3307] Fix | Delete
welcomeGuide: true,
[3308] Fix | Delete
welcomeGuideTemplate: true
[3309] Fix | Delete
});
[3310] Fix | Delete
(0,external_wp_data_namespaceObject.dispatch)(external_wp_preferences_namespaceObject.store).setDefaults('core', {
[3311] Fix | Delete
allowRightClickOverrides: true,
[3312] Fix | Delete
editorMode: 'visual',
[3313] Fix | Delete
fixedToolbar: false,
[3314] Fix | Delete
hiddenBlockTypes: [],
[3315] Fix | Delete
inactivePanels: [],
[3316] Fix | Delete
openPanels: ['post-status'],
[3317] Fix | Delete
showBlockBreadcrumbs: true,
[3318] Fix | Delete
showIconLabels: false,
[3319] Fix | Delete
showListViewByDefault: false,
[3320] Fix | Delete
isPublishSidebarEnabled: true
[3321] Fix | Delete
});
[3322] Fix | Delete
(0,external_wp_data_namespaceObject.dispatch)(external_wp_blocks_namespaceObject.store).reapplyBlockTypeFilters();
[3323] Fix | Delete
[3324] Fix | Delete
// Check if the block list view should be open by default.
[3325] Fix | Delete
// If `distractionFree` mode is enabled, the block list view should not be open.
[3326] Fix | Delete
// This behavior is disabled for small viewports.
[3327] Fix | Delete
if (isMediumOrBigger && (0,external_wp_data_namespaceObject.select)(external_wp_preferences_namespaceObject.store).get('core', 'showListViewByDefault') && !(0,external_wp_data_namespaceObject.select)(external_wp_preferences_namespaceObject.store).get('core', 'distractionFree')) {
[3328] Fix | Delete
(0,external_wp_data_namespaceObject.dispatch)(external_wp_editor_namespaceObject.store).setIsListViewOpened(true);
[3329] Fix | Delete
}
[3330] Fix | Delete
(0,external_wp_blockLibrary_namespaceObject.registerCoreBlocks)();
[3331] Fix | Delete
(0,external_wp_widgets_namespaceObject.registerLegacyWidgetBlock)({
[3332] Fix | Delete
inserter: false
[3333] Fix | Delete
});
[3334] Fix | Delete
(0,external_wp_widgets_namespaceObject.registerWidgetGroupBlock)({
[3335] Fix | Delete
inserter: false
[3336] Fix | Delete
});
[3337] Fix | Delete
if (false) {}
[3338] Fix | Delete
[3339] Fix | Delete
// Show a console log warning if the browser is not in Standards rendering mode.
[3340] Fix | Delete
const documentMode = document.compatMode === 'CSS1Compat' ? 'Standards' : 'Quirks';
[3341] Fix | Delete
if (documentMode !== 'Standards') {
[3342] Fix | Delete
// eslint-disable-next-line no-console
[3343] Fix | Delete
console.warn("Your browser is using Quirks Mode. \nThis can cause rendering issues such as blocks overlaying meta boxes in the editor. Quirks Mode can be triggered by PHP errors or HTML code appearing before the opening <!DOCTYPE html>. Try checking the raw page source or your site's PHP error log and resolving errors there, removing any HTML before the doctype, or disabling plugins.");
[3344] Fix | Delete
}
[3345] Fix | Delete
[3346] Fix | Delete
// This is a temporary fix for a couple of issues specific to Webkit on iOS.
[3347] Fix | Delete
// Without this hack the browser scrolls the mobile toolbar off-screen.
[3348] Fix | Delete
// Once supported in Safari we can replace this in favor of preventScroll.
[3349] Fix | Delete
// For details see issue #18632 and PR #18686
[3350] Fix | Delete
// Specifically, we scroll `interface-interface-skeleton__body` to enable a fixed top toolbar.
[3351] Fix | Delete
// But Mobile Safari forces the `html` element to scroll upwards, hiding the toolbar.
[3352] Fix | Delete
[3353] Fix | Delete
const isIphone = window.navigator.userAgent.indexOf('iPhone') !== -1;
[3354] Fix | Delete
if (isIphone) {
[3355] Fix | Delete
window.addEventListener('scroll', event => {
[3356] Fix | Delete
const editorScrollContainer = document.getElementsByClassName('interface-interface-skeleton__body')[0];
[3357] Fix | Delete
if (event.target === document) {
[3358] Fix | Delete
// Scroll element into view by scrolling the editor container by the same amount
[3359] Fix | Delete
// that Mobile Safari tried to scroll the html element upwards.
[3360] Fix | Delete
if (window.scrollY > 100) {
[3361] Fix | Delete
editorScrollContainer.scrollTop = editorScrollContainer.scrollTop + window.scrollY;
[3362] Fix | Delete
}
[3363] Fix | Delete
// Undo unwanted scroll on html element, but only in the visual editor.
[3364] Fix | Delete
if (document.getElementsByClassName('is-mode-visual')[0]) {
[3365] Fix | Delete
window.scrollTo(0, 0);
[3366] Fix | Delete
}
[3367] Fix | Delete
}
[3368] Fix | Delete
});
[3369] Fix | Delete
}
[3370] Fix | Delete
[3371] Fix | Delete
// Prevent the default browser action for files dropped outside of dropzones.
[3372] Fix | Delete
window.addEventListener('dragover', e => e.preventDefault(), false);
[3373] Fix | Delete
window.addEventListener('drop', e => e.preventDefault(), false);
[3374] Fix | Delete
root.render( /*#__PURE__*/(0,external_ReactJSXRuntime_namespaceObject.jsx)(editor, {
[3375] Fix | Delete
settings: settings,
[3376] Fix | Delete
postId: postId,
[3377] Fix | Delete
postType: postType,
[3378] Fix | Delete
initialEdits: initialEdits
[3379] Fix | Delete
}));
[3380] Fix | Delete
return root;
[3381] Fix | Delete
}
[3382] Fix | Delete
[3383] Fix | Delete
/**
[3384] Fix | Delete
* Used to reinitialize the editor after an error. Now it's a deprecated noop function.
[3385] Fix | Delete
*/
[3386] Fix | Delete
function reinitializeEditor() {
[3387] Fix | Delete
external_wp_deprecated_default()('wp.editPost.reinitializeEditor', {
[3388] Fix | Delete
since: '6.2',
[3389] Fix | Delete
version: '6.3'
[3390] Fix | Delete
});
[3391] Fix | Delete
}
[3392] Fix | Delete
[3393] Fix | Delete
[3394] Fix | Delete
[3395] Fix | Delete
[3396] Fix | Delete
[3397] Fix | Delete
(window.wp = window.wp || {}).editPost = __webpack_exports__;
[3398] Fix | Delete
/******/ })()
[3399] Fix | Delete
;
[3400] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function