<?php
echo apply_filters( 'the_content', get_the_content($ID) );
?>
import React, { Component } from 'react';
class SearchBar extends Component {
constructor(props) {
super(props);
this.state = { term: ' ' };
}
render() {
return ( // в круглых скобках возвращаем, если более 1й строки
<div>
<input onChange={event => this.setState({ term: event.target.value })} />;
</div>
)
}
}
export default SearchBar;
$( "p" ).last().remove();
var nodes = div.querySelectorAll('p');
var first = nodes[0];
var last = nodes[nodes.length- 1];
last.remove();