WordPress study notes (3) other functions

1. Media library

The media library is mainly used to manage the attachments you upload using wordpress, such as pictures, videos and other files. Click the upper left corner to switch the view (list/thumbnail)

Media file management

  1. Edit: You can modify the title, explanatory text, and alternative text of the picture. Alternative text is when the picture cannot be displayed normally, it will replace the picture with text.
  2. Permanently delete: delete the media in the media library, the ones that have been added to the article will not be affected
  3. View: View the picture in the form of a web page

Media file addition

  1. The maximum allowed size of the uploaded file can be uploaded here is 2M
  2. Commonly used image formats, document formats, and compression formats can all be uploaded. You can use this to upload files for users to download.

2. Comment management

  1. The list from left to right is: commented user, comment content, user commented article, comment time.
  2. The comments can be managed in the comment section. The specific operations include
    (1) Reject/Approve: WordPress defaults to set users to post comments, and they will be displayed on the web page after approval
    (2) Reply: Reply to the user’s comments
    (3) Edit: You can modify the user comments
    (4) after spam and moved to the Recycle Bin operations, comments will not be displayed on web pages.

Three, user management

Add user

You can add users to the website here. Generally, you do not manually add users. Manually adding users is generally only used to add administrators. Ordinary users usually have registration channels.
Fill in the user name, email, first name, last name, password, and select the user role to complete the user addition.

user information

Click on your profile to see your profile

  1. Visual editor
    Do not use visual editor:

    use visual editor
  2. The color of the management interface: the colors on the left and upper sides of the backend
  3. Toolbar: After logging in, open your website and you will see a toolbar at the top.
  4. Profile picture: You need to register an account on the gravatar website and set an avatar. When the same email account is used to register as a member on the WordPress website, then WordPress will obtain the avatar from the gravatar website according to the email account information

Manage users

You can manage all users of this website in the All Users page.
Insert a picture description here

Four, tools

Quick release

Drag the button to the favorites bar to add this tool. When you open someone else’s website again, click the Quick Publish button to copy the title, content, image, etc. of the page to form an article.

Direct link

Similar to quick publishing, click the direct link button, you can see that there is a column at the top where you can enter the URL, find the webpage you want to edit, and copy the URL to this column to generate an article.

Import and export

Import can import your own articles and comments to this website from other blog platforms and other websites. Everywhere is to create an xml file to save the content of the website.

Five, appearance

theme

  1. The role
    of the theme Change a different theme, the visual effect of the website will change. The content of the website that users see will also change. The functionality of the site will also change.
  2. How to install the theme
    Click Add theme to enter the installation page, you can install the theme on this page
    (1) Online installation: select the theme in the wordpress features, popular, latest and other columns, you can also search for the theme to install. After installation, click the real-time preview to see the effect of changing the theme of the website. Click Enable to change the theme.

    (2) Manual installation: Download the theme to the local, click Upload theme, select the downloaded theme zip file, and click Install now.

    (3) Direct installation: directly place the decompressed theme folder in the wp-content/themes/ folder. Go back to the main page and refresh to see the theme you just installed.
  3. Customize the theme After
    clicking the customize button, you can see that there are customized columns on the left (different theme columns will be different), and the real-time effect preview on the right

small tools

Some themes do not provide this function, and whether or not this function is available is determined by the theme.

  1. You can see some containers on the right side of the gadget. Modifying these containers can change the effect of the web page.
  2. The options available on the left side of the widget can be dragged to the container on the right to use.

Six, settings

General settings

  1. Site Title: The name of the website
  2. Subtitle: Normally, it is displayed next to the title of the website
  3. The wordpress address and site address generally use the default
  4. E-mail address: the post used to receive site-related notices
  5. Membership: Does the site allow others to register
  6. Default role for new users: Considering permissions and security issues, subscriber permissions are sufficient.
  7. ICP record number: You can fill in the record number of the website, whether it will be displayed on the website depends on the subject.

Compose settings

  1. Default article category: When you publish an article without checking the category, wordpress will automatically put the article in the category set here
  2. Update service: fill in the URL in the update service. When new content is released, wordpress will automatically notify the link address here. (Mainly used for search optimization)

Reading settings

  1. Home page display: the latest articles are displayed by default, and when you select a static page, you can set the home page of the site as a page published in the background
  2. The recent display in the feed: how much content is displayed on each page when a user subscribes to our website content

Discussion settings

Try to notify the blog of the article link: When publishing the article, if the article content is published with the link, if this option is checked, the other party will be notified that our link points to them (generally not used).

Multimedia settings

After uploading a picture, wordpress will automatically convert pictures of different pixel sizes on the basis of this picture.

Permalink

By switching between different link structures, you can change the web page URL. The main reason for the change is to optimize search engine retrieval. It is generally better to use the article name.

Custom structure

Code effect
%post_id% Content number
%postname% The name of the content
%year% Year of release
%monthnum% Month of release
%day% Specific day

Guess you like

Origin blog.csdn.net/weixin_44543463/article/details/112978385